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

This commit is contained in:
Klaus Leithoff 2010-03-22 12:11:45 +00:00
parent a185cdece2
commit 23202744d7

View File

@ -36,7 +36,7 @@
{
$url= html_entity_decode(urldecode($_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)));
exit;