summaryrefslogtreecommitdiffstats
path: root/lib/fileproxy/quota.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/fileproxy/quota.php')
-rw-r--r--lib/fileproxy/quota.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/fileproxy/quota.php b/lib/fileproxy/quota.php
index 7316224cc61..4c6261fc514 100644
--- a/lib/fileproxy/quota.php
+++ b/lib/fileproxy/quota.php
@@ -27,7 +27,7 @@
class OC_FileProxy_Quota extends OC_FileProxy{
private $userQuota=-1;
-
+
/**
* get the quota for the current user
* @return int
@@ -46,9 +46,9 @@ class OC_FileProxy_Quota extends OC_FileProxy{
$this->userQuota=OC_Helper::computerFileSize($userQuota);
}
return $this->userQuota;
-
+
}
-
+
/**
* get the free space in the users home folder
* @return int
@@ -69,7 +69,7 @@ class OC_FileProxy_Quota extends OC_FileProxy{
}
return $totalSpace-$usedSpace;
}
-
+
public function postFree_space($path,$space){
$free=$this->getFreeSpace();
if($free==0){