missing paren

This commit is contained in:
friendica
2014-05-13 02:17:17 -07:00
parent 8c948f4bbe
commit 71ded9388b
12 changed files with 12 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
<?php
if(! function_exists("string_plural_select_cs") {
if(! function_exists("string_plural_select_cs")) {
function string_plural_select_cs($n){
return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;
}}