bug #114066 [core] ForceSSL generates incorrectly escaped redirections

This commit is contained in:
Marc Delisle
2008-09-26 16:22:42 +00:00
parent 99e34e984e
commit c7dd098be1
2 changed files with 2 additions and 1 deletions

View File

@@ -88,6 +88,7 @@ danbarry
+ [lang] Hungarian update, thanks to Jozsef Tamas Herczeg - dodika
- bug #2113848 [navi] Page number after database switching
- patch #2115966 [GUI] Checkboxes and IE 7, thanks to Martin - maschg
- bug #114066 [core] ForceSSL generates incorrectly escaped redirections
2.11.9.2 (2008-09-22)
- [security] XSS in MSIE using NUL byte, thanks to JPCERT.

View File

@@ -534,7 +534,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;
}