ampersand-at-the-end-of-url fix provided by zorg

This commit is contained in:
Klaus Leithoff 2010-03-22 12:16:06 +00:00
parent 107d6844be
commit 736b401922

View File

@ -36,7 +36,7 @@
{ {
$url= html_entity_decode(urldecode($_GET['go'])); $url= html_entity_decode(urldecode($_GET['go']));
unset($_GET['go']); unset($_GET['go']);
$url=$url."&".http_build_query($_GET); if (!empty($_GET)) $url=$url."&".http_build_query($_GET);
Header('Location: ' . html_entity_decode(urldecode($url))); Header('Location: ' . html_entity_decode(urldecode($url)));
exit; exit;