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:
authorMarc Delisle <marc@infomarc.info>2004-01-20 22:35:37 +0300
committerMarc Delisle <marc@infomarc.info>2004-01-20 22:35:37 +0300
commit28a5d0476e8894aa18949910e7cceb3fbe36a7ad (patch)
tree0a39a8773f0b115069b8e753f9dc0c2e06350eaa /read_dump.php
parent0c31d7c7a8fef79ee1d30d41b54163c9f1da0e66 (diff)
PMA_DBI_num_rows
Diffstat (limited to 'read_dump.php')
-rw-r--r--read_dump.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/read_dump.php b/read_dump.php
index a8e9771b84..f12bee6055 100644
--- a/read_dump.php
+++ b/read_dump.php
@@ -277,7 +277,7 @@ if ($sql_query != '') {
break;
}
} else if ($cfg['VerboseMultiSubmit']) {
- $a_num_rows = (int)@mysql_num_rows($result);
+ $a_num_rows = (int)@PMA_DBI_num_rows($result);
$a_aff_rows = (int)@mysql_affected_rows();
if ($a_num_rows > 0) {
$a_rows = $a_num_rows;