diff options
author | zotlabs <mike@macgirvin.com> | 2018-06-14 20:40:25 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-06-14 20:40:25 -0700 |
commit | 7a144b90fb9174eb50e5d53d2f62d6d8d2671353 (patch) | |
tree | 243628112972012d9a926c396e5d9fa1cf5ce19c /include/language.php | |
parent | 4a028b601518aafdb946c1a9c2b3fc01c4dbca19 (diff) | |
download | volse-hubzilla-7a144b90fb9174eb50e5d53d2f62d6d8d2671353.tar.gz volse-hubzilla-7a144b90fb9174eb50e5d53d2f62d6d8d2671353.tar.bz2 volse-hubzilla-7a144b90fb9174eb50e5d53d2f62d6d8d2671353.zip |
re-implement/refactor getQuotaInfo() on DAV storage
Diffstat (limited to 'include/language.php')
-rw-r--r-- | include/language.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/language.php b/include/language.php index d0ecd3a85..69a7e3004 100644 --- a/include/language.php +++ b/include/language.php @@ -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; } |