This commit is contained in:
Andreas Österreicher
2010-05-12 15:35:13 +00:00
parent a9e309275a
commit 1ec590b2a2
3 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ function clean_string($string)
"ß" => "ss");
$string = strtr($string, $trans);
return ereg_replace("[^a-zA-Z0-9]", "", $string);
return mb_ereg_replace("[^a-zA-Z0-9]", "", $string);
//[:space:]
}