* (bug 24804) Corrected commafying in Polish and Ukrainian
[lhc/web/wiklou.git] / languages / classes / LanguageEt.php
index c6729d9..226c2d7 100644 (file)
@@ -9,9 +9,9 @@ class LanguageEt extends Language {
        /**
         * Avoid grouping whole numbers between 0 to 9999
         */
-       function commafy($_) {
-               if (!preg_match('/^\d{1,4}$/',$_)) {
-                       return strrev((string)preg_replace('/(\d{3})(?=\d)(?!\d*\.)/','$1,',strrev($_)));
+       function commafy( $_ ) {
+               if ( !preg_match( '/^\d{1,4}$/', $_ ) ) {
+                       return strrev( (string)preg_replace( '/(\d{3})(?=\d)(?!\d*\.)/', '$1,', strrev( $_ ) ) );
                } else {
                        return $_;
                }