diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-03-11 12:40:59 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-03-11 12:40:59 +0100 |
commit | c1cb9ee9b0b19e17ddde046642fa01d52cda63bf (patch) | |
tree | 47d902d6242697deb3145e1cbec689964e3cc6ee /lib/private/files/storage | |
parent | a53df71b4adf9133b0d32547360dceb083ef0a6c (diff) | |
parent | 010eef95c0c5cebd03b03645d29847638e064bd5 (diff) | |
download | nextcloud-server-c1cb9ee9b0b19e17ddde046642fa01d52cda63bf.tar.gz nextcloud-server-c1cb9ee9b0b19e17ddde046642fa01d52cda63bf.zip |
Merge pull request #7650 from owncloud/quota-totalspace
Fixed total space display when data size exceeds 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 ea612735477..32ceba8b196 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) { |