MediaWiki  REL1_21
LanguageAr.php
Go to the documentation of this file.
00001 <?php
00030 class LanguageAr extends Language {
00031 
00043         function normalize( $s ) {
00044                 global $wgFixArabicUnicode;
00045                 $s = parent::normalize( $s );
00046                 if ( $wgFixArabicUnicode ) {
00047                         $s = $this->transformUsingPairFile( 'normalize-ar.ser', $s );
00048                 }
00049                 return $s;
00050         }
00051 }