MediaWiki  REL1_22
LanguageMl.php
Go to the documentation of this file.
00001 <?php
00029 class LanguageMl extends Language {
00044     function normalize( $s ) {
00045         global $wgFixMalayalamUnicode;
00046         $s = parent::normalize( $s );
00047         if ( $wgFixMalayalamUnicode ) {
00048             $s = $this->transformUsingPairFile( 'normalize-ml.ser', $s );
00049         }
00050         return $s;
00051     }
00052 }