bug #1914066 [core] ForceSSL generates incorrectly escaped redirections, this time with the correct fix

This commit is contained in:
Marc Delisle
2008-10-06 21:36:08 +00:00
parent 0c378ef487
commit fd03f05f4d
3 changed files with 11 additions and 5 deletions

View File

@@ -539,7 +539,7 @@ if ($_SESSION['PMA_Config']->get('ForceSSL')
PMA_sendHeaderLocation(
preg_replace('/^http/', 'https',
$_SESSION['PMA_Config']->get('PmaAbsoluteUri'))
. PMA_generate_common_url($_GET, '', '&'));
. PMA_generate_common_url($_GET, '&'));
exit;
}