]> git.mjollnir.org Git - moodle.git/commitdiff
Changing //TRANSLIT to //IGNORE because some weird bug
authorstronk7 <stronk7>
Fri, 11 Aug 2006 09:48:35 +0000 (09:48 +0000)
committerstronk7 <stronk7>
Fri, 11 Aug 2006 09:48:35 +0000 (09:48 +0000)
in the OS iconv libraries was breaking some texts.

Merged from MOODLE_16_STABLE

lib/typo3/class.t3lib_cs.php

index 673a560bd6910a22c4d5984b926801d4d8929c47..28f7b1f7026eb438d9739816fdb7accc8a8344ec 100644 (file)
@@ -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;