summaryrefslogtreecommitdiffstats
path: root/lib/fileproxy
diff options
context:
space:
mode:
authorFelix Moeller <mail@felixmoeller.de>2012-11-04 18:28:29 +0100
committerFelix Moeller <mail@felixmoeller.de>2012-11-04 18:28:29 +0100
commit0e70ea9d8baa449ee3c8309f2b6a59ce06a55926 (patch)
tree538076bdc23be31e88ba012aa4f26448c8fd1ca3 /lib/fileproxy
parent1205749f8cec19c30c9f58f7f97832fac9a4c502 (diff)
downloadnextcloud-server-0e70ea9d8baa449ee3c8309f2b6a59ce06a55926.tar.gz
nextcloud-server-0e70ea9d8baa449ee3c8309f2b6a59ce06a55926.zip
Checkstyle: Fix the last 25 NoSpaceAfterComma
Diffstat (limited to 'lib/fileproxy')
-rw-r--r--lib/fileproxy/quota.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/fileproxy/quota.php b/lib/fileproxy/quota.php
index 81376fb6fca..46bc8dc16d8 100644
--- a/lib/fileproxy/quota.php
+++ b/lib/fileproxy/quota.php
@@ -38,9 +38,9 @@ class OC_FileProxy_Quota extends OC_FileProxy{
if(in_array($user, $this->userQuota)) {
return $this->userQuota[$user];
}
- $userQuota=OC_Preferences::getValue($user,'files','quota', 'default');
+ $userQuota=OC_Preferences::getValue($user, 'files', 'quota', 'default');
if($userQuota=='default') {
- $userQuota=OC_AppConfig::getValue('files','default_quota', 'none');
+ $userQuota=OC_AppConfig::getValue('files', 'default_quota', 'none');
}
if($userQuota=='none') {
$this->userQuota[$user]=0;