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:
Diffstat (limited to 'libraries/db_table_exists.lib.php')
-rw-r--r--libraries/db_table_exists.lib.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/libraries/db_table_exists.lib.php b/libraries/db_table_exists.lib.php
index 66c30e9ed3..5f935bca37 100644
--- a/libraries/db_table_exists.lib.php
+++ b/libraries/db_table_exists.lib.php
@@ -5,6 +5,7 @@
* and display headers
*
* @version $Id$
+ * @package phpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
exit;
@@ -45,10 +46,10 @@ if (empty($is_db)) {
if (empty($is_table) && !defined('PMA_SUBMIT_MULT')) {
// Not a valid table name -> back to the db_sql.php
-
+
if (strlen($table)) {
$is_table = isset(PMA_Table::$cache[$db][$table]);
-
+
if (! $is_table) {
$_result = PMA_DBI_try_query(
'SHOW TABLES LIKE \'' . PMA_sqlAddslashes($table, true) . '\';',