Update functions.inc.php

Add //TRANSLIT to iconv for activate transliteration.
This commit is contained in:
Iglou.eu 2015-10-29 15:29:50 +01:00
parent d7fef70c4c
commit 9fb420d426

View file

@ -1631,7 +1631,7 @@ function convert_charset($str, $source_charset, $dest_charset)
}
if (function_exists('iconv'))
{
return iconv($source_charset, $dest_charset, $str);
return iconv($source_charset, $dest_charset.'//TRANSLIT', $str);
}
if (function_exists('mb_convert_encoding'))
{