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 'setup/config.php')
-rw-r--r--setup/config.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup/config.php b/setup/config.php
index ffe65915ed..4e09780f63 100644
--- a/setup/config.php
+++ b/setup/config.php
@@ -50,7 +50,7 @@ if (PMA_ifSetOr($_POST['submit_clear'], '')) {
ConfigGenerator::getConfigFile($GLOBALS['ConfigFile'])
);
header('HTTP/1.1 303 See Other');
- header('Location: index.php?action_done=config_saved');
+ header('Location: index.php' . PMA_URL_getCommon() . '&action_done=config_saved');
exit;
} elseif (PMA_ifSetOr($_POST['submit_load'], '')) {
//
@@ -75,7 +75,7 @@ if (PMA_ifSetOr($_POST['submit_clear'], '')) {
// Show generated config file in a <textarea>
//
header('HTTP/1.1 303 See Other');
- header('Location: index.php?page=config');
+ header('Location: index.php' . PMA_URL_getCommon() . '&page=config');
exit;
}
?>