diff options
author | Gerrit Uitslag <klapinklapin@gmail.com> | 2014-07-15 16:05:47 +0200 |
---|---|---|
committer | Gerrit Uitslag <klapinklapin@gmail.com> | 2014-07-15 16:05:47 +0200 |
commit | edd95259bb705c653f690b97064e0337a75aa2e4 (patch) | |
tree | df28f16b01e9e7708ee8b090bde4bd2185e452ff | |
parent | 80679bafa1a5ed611bafc603afd0ae7b2b5954a7 (diff) | |
download | rpg-edd95259bb705c653f690b97064e0337a75aa2e4.tar.gz rpg-edd95259bb705c653f690b97064e0337a75aa2e4.tar.bz2 |
not encode semicolon in idfilter.
Restores vanished changes of #84
-rw-r--r-- | inc/common.php | 1 |
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; |