mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
redirection via go, by rebuilding the query string; suggested by zorg; seems to work without sideeffects in my enviroment; please give feedback to the '[eGroupWare-developers] bug with notification,felamimail and redirect' entry
This commit is contained in:
parent
66451aa99d
commit
d9c28b9de2
@ -34,7 +34,11 @@
|
|||||||
|
|
||||||
if($_GET['go'])
|
if($_GET['go'])
|
||||||
{
|
{
|
||||||
Header('Location: ' . html_entity_decode(urldecode($_GET['go'])));
|
$url= html_entity_decode(urldecode($_GET['go']));
|
||||||
|
unset($_GET['go']);
|
||||||
|
$url=$url."&".http_build_query($_GET);
|
||||||
|
|
||||||
|
Header('Location: ' . html_entity_decode(urldecode($url)));
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user