diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-03-10 15:19:18 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-03-10 17:59:14 +0100 |
commit | 010eef95c0c5cebd03b03645d29847638e064bd5 (patch) | |
tree | b44bd736a2b3fee1d2abde614653f7d9317d448d /lib/private/files/storage | |
parent | 3eb58d9973706b1cc3f51f024e362779d278ee49 (diff) | |
download | nextcloud-server-010eef95c0c5cebd03b03645d29847638e064bd5.tar.gz nextcloud-server-010eef95c0c5cebd03b03645d29847638e064bd5.zip |
Fixed total space display when data size exceeds quota
The total space display in the personal page now shows the quota value
instead of used space when used space exceeds the quota (soft quota).
Diffstat (limited to 'lib/private/files/storage')
-rw-r--r-- | lib/private/files/storage/wrapper/quota.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/private/files/storage/wrapper/quota.php b/lib/private/files/storage/wrapper/quota.php index 26c952e694a..0e0d5b13104 100644 --- a/lib/private/files/storage/wrapper/quota.php +++ b/lib/private/files/storage/wrapper/quota.php @@ -30,6 +30,13 @@ class Quota extends Wrapper { } /** + * @return quota value + */ + public function getQuota() { + return $this->quota; + } + + /** * @param string $path */ protected function getSize($path) { |