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:53:53 +0300
committerMarc Delisle <marc@infomarc.info>2004-01-20 22:53:53 +0300
commitb0cc4dbb237fa3ab6a5749d173e3a8b5c12de471 (patch)
tree5c95ecf2d1ad2d57ae5cde1e88132804704b9803 /read_dump.php
parent8d5f4afa2655cb83321af200daf6aba4d9b413fa (diff)
use PMA_DBI function
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 f12bee6055..39497e5107 100644
--- a/read_dump.php
+++ b/read_dump.php
@@ -348,7 +348,7 @@ if ($goto == 'tbl_properties.php') {
} else {
PMA_mysql_select_db($db);
$is_table = @PMA_mysql_query('SHOW TABLES LIKE \'' . PMA_sqlAddslashes($table, TRUE) . '\'');
- if (!($is_table && @mysql_numrows($is_table))) {
+ if (!($is_table && @PMA_DBI_num_rows($is_table))) {
$goto = 'db_details.php';
unset($table);
}