aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/files/storage
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-03-11 12:40:59 +0100
committerVincent Petry <pvince81@owncloud.com>2014-03-11 12:40:59 +0100
commitc1cb9ee9b0b19e17ddde046642fa01d52cda63bf (patch)
tree47d902d6242697deb3145e1cbec689964e3cc6ee /lib/private/files/storage
parenta53df71b4adf9133b0d32547360dceb083ef0a6c (diff)
parent010eef95c0c5cebd03b03645d29847638e064bd5 (diff)
downloadnextcloud-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.php7
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) {