bug #159 multiple definition of string_plural_form function when changing languages

This commit is contained in:
Friendika 2011-09-21 07:09:37 -07:00
parent 11ca81adba
commit c63adcfae0
9 changed files with 551 additions and 24 deletions

View file

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