Skip to content
Snippets Groups Projects
Commit edd95259 authored by Gerrit Uitslag's avatar Gerrit Uitslag
Browse files

not encode semicolon in idfilter.

Restores vanished changes of #84
parent 80679baf
No related branches found
No related tags found
No related merge requests found
......@@ -416,6 +416,7 @@ function idfilter($id, $ue = true) {
if($ue) {
$id = rawurlencode($id);
$id = str_replace('%3A', ':', $id); //keep as colon
$id = str_replace('%3B', ';', $id); //keep as semicolon
$id = str_replace('%2F', '/', $id); //keep as slash
}
return $id;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment