
Originally Posted by
myworld20091
i did a test, go to /includes/classes/ssu/cores/language.php , find
function removeNonAlphaNumeric($name, $name_delimiter){
return preg_replace("/[^a-zA-Z0-9]/", $name_delimiter, $name);
add
$name = str_replace("b","e", $name);
then i check the url, all the letters "b" replaced by "e".
but if i add
$name = str_replace("é","e", $name);
the character "é" still showing as "-"
Bookmarks