Merge "(bug 33602) list=allusers throws exceptions with invalid names"
[lhc/web/wiklou.git] / languages / classes / LanguageMy.php
1 <?php
2
3 /** Burmese (Myanmasa)
4 *
5 * @ingroup Language
6 *
7 * @author Niklas Laxström, 2008
8 */
9 class LanguageMy extends Language {
10
11 /**
12 * @param $_ string
13 * @return string
14 */
15 function commafy( $_ ) {
16 /* NO-op. Cannot use
17 * $separatorTransformTable = array( ',' => '' )
18 * That would break when parsing and doing strstr '' => 'foo';
19 */
20 return $_;
21 }
22 }