From: stronk7 Date: Fri, 11 Aug 2006 09:48:35 +0000 (+0000) Subject: Changing //TRANSLIT to //IGNORE because some weird bug X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=f1b20469128eeeb148f89e06498f34a134970016;p=moodle.git Changing //TRANSLIT to //IGNORE because some weird bug in the OS iconv libraries was breaking some texts. Merged from MOODLE_16_STABLE --- diff --git a/lib/typo3/class.t3lib_cs.php b/lib/typo3/class.t3lib_cs.php index 673a560bd6..28f7b1f702 100644 --- a/lib/typo3/class.t3lib_cs.php +++ b/lib/typo3/class.t3lib_cs.php @@ -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;