diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-08-27 00:59:58 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-08-27 00:59:58 +0200 |
commit | 8cf9336bcbe527c3d3eb7b348f3a0feff799c1da (patch) | |
tree | 139922b8343a667017b4a0c54b7919b2bc944773 /apps/files/lib | |
parent | 1e4ebf47e26579d6bd0334b4853ee0c960c1b2a6 (diff) | |
download | nextcloud-server-8cf9336bcbe527c3d3eb7b348f3a0feff799c1da.tar.gz nextcloud-server-8cf9336bcbe527c3d3eb7b348f3a0feff799c1da.zip |
storage information is path specific
Diffstat (limited to 'apps/files/lib')
-rw-r--r-- | apps/files/lib/helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/lib/helper.php b/apps/files/lib/helper.php index f2b1f142e9b..7135ef9f656 100644 --- a/apps/files/lib/helper.php +++ b/apps/files/lib/helper.php @@ -11,7 +11,7 @@ class Helper $maxHumanFilesize = $l->t('Upload') . ' max. ' . $maxHumanFilesize; // information about storage capacities - $storageInfo = \OC_Helper::getStorageInfo(); + $storageInfo = \OC_Helper::getStorageInfo($dir); return array('uploadMaxFilesize' => $maxUploadFilesize, 'maxHumanFilesize' => $maxHumanFilesize, |