Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKasun Chathuranga <chathuranga.jayaneththi@gmail.com>2013-05-04 07:09:43 +0400
committerKasun Chathuranga <chathuranga.jayaneththi@gmail.com>2013-05-04 07:09:43 +0400
commit556bcb9f9de9f6ae8efa8ee86177842f71b7e280 (patch)
tree2879a092759dd3bafe801ac57d5e7e44464595f4 /server_binlog.php
parent99c5c0ef4963bc53094323cc8c85ce7a27992275 (diff)
PMA_DBI_num_rows --> PMA_DBI_numRows
Diffstat (limited to 'server_binlog.php')
-rw-r--r--server_binlog.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/server_binlog.php b/server_binlog.php
index 23fa8ec170..1921ff1c11 100644
--- a/server_binlog.php
+++ b/server_binlog.php
@@ -54,7 +54,7 @@ $result = PMA_DBI_query($sql_query);
*/
// Gets the list of fields properties
if (isset($result) && $result) {
- $num_rows = PMA_DBI_num_rows($result);
+ $num_rows = PMA_DBI_numRows($result);
} else {
$num_rows = 0;
}