diff options
author | Felix Moeller <mail@felixmoeller.de> | 2012-11-04 18:28:29 +0100 |
---|---|---|
committer | Felix Moeller <mail@felixmoeller.de> | 2012-11-04 18:28:29 +0100 |
commit | 0e70ea9d8baa449ee3c8309f2b6a59ce06a55926 (patch) | |
tree | 538076bdc23be31e88ba012aa4f26448c8fd1ca3 /lib/fileproxy | |
parent | 1205749f8cec19c30c9f58f7f97832fac9a4c502 (diff) | |
download | nextcloud-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.php | 4 |
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; |