diff options
author | Andreas Gohr <andi@splitbrain.org> | 2014-07-18 12:30:27 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2014-07-18 12:30:27 +0200 |
commit | 8b0e64e00ed339b3e8798c9e53a809bd7f936fe6 (patch) | |
tree | 1ea00e00eb8fd4fb384be9ef5fd825b4a5451a73 | |
parent | a5ac1d91deb9f263c360e34096a469b3beb681f9 (diff) | |
parent | edd95259bb705c653f690b97064e0337a75aa2e4 (diff) | |
download | rpg-8b0e64e00ed339b3e8798c9e53a809bd7f936fe6.tar.gz rpg-8b0e64e00ed339b3e8798c9e53a809bd7f936fe6.tar.bz2 |
Merge pull request #801 from splitbrain/semicolonwinapache
not encode semicolon in idfilter()
-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; |