MediaWiki  REL1_19
LanguageMl.php
Go to the documentation of this file.
00001 <?php
00002 
00008 class LanguageMl extends Language {
00023         function normalize( $s ) {
00024                 global $wgFixMalayalamUnicode;
00025                 $s = parent::normalize( $s );
00026                 if ( $wgFixMalayalamUnicode ) {
00027                         $s = $this->transformUsingPairFile( 'normalize-ml.ser', $s );
00028                 }
00029                 return $s;
00030         }
00031 }