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 /index.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 'index.php')
-rw-r--r--index.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/index.php b/index.php
index bb4e12742a..5d27ef28c6 100644
--- a/index.php
+++ b/index.php
@@ -61,9 +61,13 @@ if (isset($_REQUEST['ajax_request']) && ! empty($_REQUEST['access_time'])) {
if (! empty($_REQUEST['db'])) {
$page = null;
if (! empty($_REQUEST['table'])) {
- $page = $GLOBALS['cfg']['DefaultTabTable'];
+ $page = PMA_Util::getScriptNameForOption(
+ $GLOBALS['cfg']['DefaultTabTable'], 'table'
+ );
} else {
- $page = $GLOBALS['cfg']['DefaultTabDatabase'];
+ $page = PMA_Util::getScriptNameForOption(
+ $GLOBALS['cfg']['DefaultTabDatabase'], 'database'
+ );
}
include $page;
exit;