mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 22:27:31 -04:00
Fix namespace
This commit is contained in:
parent
5ddd85ff9c
commit
dbbbfee7de
1 changed files with 1 additions and 1 deletions
|
|
@ -6,7 +6,7 @@ class Helper
|
|||
{
|
||||
public static function buildFileStorageStatistics($dir) {
|
||||
$l = new \OC_L10N('files');
|
||||
$freeSpace=OCP\Util::freeSpace($dir);
|
||||
$freeSpace=\OCP\Util::freeSpace($dir);
|
||||
$maxUploadFilesize = \OCP\Util::maxUploadFilesize($dir);
|
||||
$maxHumanFilesize = \OCP\Util::humanFileSize($maxUploadFilesize);
|
||||
$maxHumanFilesize = $l->t('Upload') . ' max. ' . $maxHumanFilesize;
|
||||
|
|
|
|||
Loading…
Reference in a new issue