Quote Originally Posted by myworld20091 View Post
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 "-"
In the snippet above have you tried using the proper ampersand for the é..... The ampersand is as follows
Code:
é
~Melanie