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:
authorRouslan Placella <rouslan@placella.com>2012-04-04 05:17:54 +0400
committerRouslan Placella <rouslan@placella.com>2012-04-04 05:17:54 +0400
commit04e64410d7798ab4f35c261156ad29959aac9ac0 (patch)
tree0fcc25a8eebed7f1a190e22281be7b4dbfca2b48 /index.php
parent1dd6b71a78931773894b18e57221360c8d3ac533 (diff)
Fixed bug #3514490 - Multiple Navigation panels bug still present
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index f94bdbf2c1..e23153fb2e 100644
--- a/index.php
+++ b/index.php
@@ -54,7 +54,7 @@ if (! strlen($GLOBALS['db'])) {
} else {
$_GET['db'] = $GLOBALS['db'];
$_GET['table'] = $GLOBALS['table'];
- $main_target = isset($GLOBALS['goto']) ? $GLOBALS['goto'] : $GLOBALS['cfg']['DefaultTabTable'];
+ $main_target = ! empty($GLOBALS['goto']) ? $GLOBALS['goto'] : $GLOBALS['cfg']['DefaultTabTable'];
}
$url_query = PMA_generate_common_url($_GET);