Fix E_NOTICE in r55415 breaking Zh variants
[lhc/web/wiklou.git] / languages / classes / LanguageFi.php
index 7c1778c..d1348f0 100644 (file)
@@ -1,21 +1,12 @@
 <?php
+
 /** Finnish (Suomi)
  *
- * @addtogroup Language
+ * @ingroup Language
  *
  * @author Niklas Laxström
  */
 class LanguageFi 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($_)));
-               } else {
-                       return $_;
-               }
-       }
 
        # Convert from the nominative form of a noun to some other case
        # Invoked with {{GRAMMAR:case|word}}
@@ -141,7 +132,4 @@ class LanguageFi extends Language {
 
                return htmlspecialchars( trim( $final ) );
        }
-
 }
-
-