diff options
Diffstat (limited to 'view/pl/hstrings.php')
-rw-r--r-- | view/pl/hstrings.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/view/pl/hstrings.php b/view/pl/hstrings.php index 4a2dd92ae..943fe36f3 100644 --- a/view/pl/hstrings.php +++ b/view/pl/hstrings.php @@ -2,8 +2,7 @@ if(! function_exists("string_plural_select_pl")) { function string_plural_select_pl($n){ - return ($n==1 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12)) -; + return ($n==1 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12)); }} App::$rtl = 0; App::$strings["plural_function_code"] = "(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12))"; |