mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 00:58:55 +01:00
Don't URL encode in links, since phpgw->link() does that now
This commit is contained in:
parent
402b797472
commit
768438ef20
@ -186,7 +186,7 @@ function string_encode ($string, $return = False)
|
|||||||
reset ($matches);
|
reset ($matches);
|
||||||
while (list (,$match_array) = each ($matches))
|
while (list (,$match_array) = each ($matches))
|
||||||
{
|
{
|
||||||
$var_encoded = rawurlencode (base64_encode ($match_array[1]));
|
$var_encoded = base64_encode ($match_array[1]);
|
||||||
$rstring = str_replace ($match_array[0], '=' . $var_encoded . $match_array[2], $rstring);
|
$rstring = str_replace ($match_array[0], '=' . $var_encoded . $match_array[2], $rstring);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user