From edd95259bb705c653f690b97064e0337a75aa2e4 Mon Sep 17 00:00:00 2001 From: Gerrit Uitslag Date: Tue, 15 Jul 2014 16:05:47 +0200 Subject: [PATCH] not encode semicolon in idfilter. Restores vanished changes of #84 --- inc/common.php | 1 + 1 file changed, 1 insertion(+) diff --git a/inc/common.php b/inc/common.php index 0fe33c5b1f..8c99560188 100644 --- a/inc/common.php +++ b/inc/common.php @@ -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;