Don't URL encode in links, since phpgw->link() does that now

This commit is contained in:
Zone 2002-08-26 04:34:34 +00:00
parent 402b797472
commit 768438ef20

View File

@ -186,7 +186,7 @@ function string_encode ($string, $return = False)
reset ($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);
}
}