From 40de37e9d9e2947e039c2df94bf67a2427d746db Mon Sep 17 00:00:00 2001
From: andi <andi@splitbrain.org>
Date: Wed, 26 Jan 2005 21:14:24 +0100
Subject: [PATCH] undo fix which broke x's in names (silly me)

darcs-hash:20050126201424-9977f-10e5657efc877e9fa0f1f63130038b0487985233.gz
---
 inc/common.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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);
-- 
GitLab