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:
authorDeven Bansod <devenbansod.bits@gmail.com>2015-06-09 20:38:11 +0300
committerDeven Bansod <devenbansod.bits@gmail.com>2015-06-13 02:11:54 +0300
commitedad7fcb3ccf351b8a8aa4d6987f1cf8232aa5c9 (patch)
treec0a4e1bb28663c660cc615d6a81c8a7c03d4d230 /sql.php
parent5d35950556d541200e67d181d68af6d95aa6f4f2 (diff)
Replace script names as config options with plain english words
Signed-off-by: Deven Bansod <devenbansod.bits@gmail.com>
Diffstat (limited to 'sql.php')
-rw-r--r--sql.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/sql.php b/sql.php
index 6b972d4124..9c2e790552 100644
--- a/sql.php
+++ b/sql.php
@@ -54,9 +54,13 @@ if (! empty($goto)) {
}
} else {
if (empty($table)) {
- $goto = $cfg['DefaultTabDatabase'];
+ $goto = PMA_Util::getScriptNameForOption(
+ $GLOBALS['cfg']['DefaultTabDatabase'], 'database'
+ );
} else {
- $goto = $cfg['DefaultTabTable'];
+ $goto = PMA_Util::getScriptNameForOption(
+ $GLOBALS['cfg']['DefaultTabTable'], 'table'
+ );
}
$is_gotofile = true;
} // end if