1
0
mirror of https://github.com/moodle/moodle.git synced 2025-04-17 22:45:54 +02:00

Changing //TRANSLIT to //IGNORE because some weird bug

in the OS iconv libraries was breaking some texts.

Merged from MOODLE_16_STABLE
This commit is contained in:
stronk7 2006-08-11 09:48:35 +00:00
parent 7b579ee61f
commit f1b2046912

@ -609,7 +609,7 @@ class t3lib_cs {
break;
case 'iconv':
$conv_str = iconv($fromCS,$toCS.'//TRANSLIT',$str);
$conv_str = iconv($fromCS,$toCS.'//IGNORE',$str);
if (false !== $conv_str) return $conv_str;
break;