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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-09-18 01:19:19 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-09-18 01:19:19 +0300
commit071a26de7f3cc22471dc6a40c7bbeb8160762492 (patch)
tree1f33c4e0b7543b3694dc832f6892f3ea6d5d1c88 /tbl_relation.php
parentc5d05559d2b5cd128cac4382a09b2e2c1ad0fcb7 (diff)
Use the local variable
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'tbl_relation.php')
-rw-r--r--tbl_relation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_relation.php b/tbl_relation.php
index 1c05c72441..1c9d9a0419 100644
--- a/tbl_relation.php
+++ b/tbl_relation.php
@@ -51,7 +51,7 @@ $options_array = array(
$cfgRelation = PMA_getRelationsParam();
$tbl_storage_engine = /*overload*/
mb_strtoupper(
- $GLOBALS['dbi']->getTable($db, $table)->getStatusInfo('Engine')
+ $dbi->getTable($db, $table)->getStatusInfo('Engine')
);
$upd_query = new PMA_Table($table, $db, $dbi);