Skip to content

Commit

Permalink
not encode semicolon in idfilter.
Browse files Browse the repository at this point in the history
Restores vanished changes of #84
  • Loading branch information
Klap-in committed Jul 15, 2014
1 parent 80679ba commit edd9525
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions inc/common.php
Expand Up @@ -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;
Expand Down

0 comments on commit edd9525

Please sign in to comment.