summaryrefslogtreecommitdiff
path: root/inc/common.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/common.php')
-rw-r--r--inc/common.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/inc/common.php b/inc/common.php
index 0fe33c5b1..8c9956018 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;