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/common.inc.php')
-rw-r--r--libraries/common.inc.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/libraries/common.inc.php b/libraries/common.inc.php
index ff55609645..d06b37aea7 100644
--- a/libraries/common.inc.php
+++ b/libraries/common.inc.php
@@ -1042,7 +1042,13 @@ if (! defined('PMA_MINIMUM_COMMON')) {
}
$_SESSION['tmpval']['previous_server'] = $GLOBALS['server'];
- } // end server connecting
+ } else { // end server connecting
+ // No need to check for 'PMA_BYPASS_GET_INSTANCE' since this execution path
+ // applies only to initial login
+ $response = PMA_Response::getInstance();
+ $response->getHeader()->disableMenuAndConsole();
+ $response->getFooter()->setMinimal();
+ }
/**
* check if profiling was requested and remember it
@@ -1148,7 +1154,8 @@ if (!empty($__redirect) && in_array($__redirect, $goto_whitelist)) {
}
// If Zero configuration mode enabled, check PMA tables in current db.
-if (isset($GLOBALS['cfg']['ZeroConf'])
+if (! defined('PMA_MINIMUM_COMMON')
+ && isset($GLOBALS['cfg']['ZeroConf'])
&& $GLOBALS['cfg']['ZeroConf'] == true
) {
if (! empty($GLOBALS['db'])) {