plural_ru args

databind
vitalif 2013-03-10 10:08:58 +00:00 committed by Vitaliy Filippov
parent 194f8a73b8
commit bfeba781f7
1 changed files with 2 additions and 2 deletions

View File

@ -2079,9 +2079,9 @@ $varref_index = \$stack[count(\$stack)-1]++;";
}
/* выбор правильной формы множественного числа для русского языка */
function function_plural_ru($one, $few, $many)
function function_plural_ru($count, $one, $few, $many)
{
return "self::plural_ru($one, $few, $many)";
return "self::plural_ru($count, $one, $few, $many)";
}
/** Массивы и хеши **/