re-implement/refactor getQuotaInfo() on DAV storage

This commit is contained in:
zotlabs
2018-06-14 20:40:25 -07:00
parent 4a028b6015
commit 7a144b90fb
4 changed files with 50 additions and 37 deletions

View File

@@ -242,7 +242,7 @@ function tt($singular, $plural, $count, $ctx = ''){
if (! function_exists($f))
$f = 'string_plural_select_default';
$k = $f($count);
$k = $f(intval($count));
return is_array($t) ? $t[$k] : $t;
}