summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandi <andi@splitbrain.org>2005-01-26 21:14:24 +0100
committerandi <andi@splitbrain.org>2005-01-26 21:14:24 +0100
commit40de37e9d9e2947e039c2df94bf67a2427d746db (patch)
tree7766ef5dee2bb424907184b778032552d8604152
parent28eadf680eabaa9659daba261466237ae807b4a0 (diff)
downloadrpg-40de37e9d9e2947e039c2df94bf67a2427d746db.tar.gz
rpg-40de37e9d9e2947e039c2df94bf67a2427d746db.tar.bz2
undo fix which broke x's in names (silly me)
darcs-hash:20050126201424-9977f-10e5657efc877e9fa0f1f63130038b0487985233.gz
-rw-r--r--inc/common.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/common.php b/inc/common.php
index 9d7caf45c..8c4b1e830 100644
--- a/inc/common.php
+++ b/inc/common.php
@@ -418,7 +418,7 @@ function cleanID($id){
if($conf['deaccent']) $id = utf8_deaccent($id,-1);
//remove specials (only ascii specials are removed)
- $id = preg_replace('#[0x00-0x20 !"§$%&()\[\]{}\\?`\'\#~*+=,<>\|^°@µ¹²³¼½¬]#u','_',$id);
+ $id = preg_replace('#[ !"§$%&()\[\]{}\\?`\'\#~*+=,<>\|^°@µ¹²³¼½¬]#u','_',$id);
//clean up
$id = preg_replace('#__#','_',$id);