* (bug 4446) $wgExportAllowHistory option to explicitly disable history in
[lhc/web/wiklou.git] / languages / LanguageHr.php
index 3a2be8f..3f40e0b 100644 (file)
@@ -1866,7 +1866,7 @@ class LanguageHr extends LanguageUtf8 {
        }
 
        function convertPlural( $count, $wordform1, $wordform2, $wordform3) {
-               $count = strtr( $count, '.', '' );
+               $count = str_replace ('.', '', $count);
                if ($count > 10 && floor(($count % 100) / 10) == 1) {
                        return $wordform3;
                } else {