"ß" wird nun als "ss" codiert

This commit is contained in:
Andreas Österreicher
2010-07-01 08:57:22 +00:00
parent 5f4d71681b
commit 081b7baf04
+2 -1
View File
@@ -498,7 +498,8 @@ function convertProblemChars($str)
'Y' => '/Ý/',
'y' => '/ý|ÿ/',
'a.' => '/ª/',
'o.' => '/º/'
'o.' => '/º/',
'ss' => '/ß/'
);
return preg_replace($acentos, array_keys($acentos), htmlentities($str,ENT_NOQUOTES, $enc));