From c0933c90e8b02cf30126a8f7c2866a60d9d3da46 Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Sun, 31 Jan 2021 15:26:55 +0100 Subject: Fix copypaste --- view/pl/hstrings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/pl') diff --git a/view/pl/hstrings.php b/view/pl/hstrings.php index 85bb3d0e5..7a58ab97f 100644 --- a/view/pl/hstrings.php +++ b/view/pl/hstrings.php @@ -2,7 +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 || n%100>14) ? 1 : 2)); + return ($n==1 ? 0 : ($n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : 2)); }} App::$rtl = 0; App::$strings["plural_function_code"] = "(n==1 ? 0 : (n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2))"; -- cgit v1.2.3