diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-12-28 19:14:33 -0500 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-12-28 19:14:33 -0500 |
commit | f922f836ce11b87192c1904e01da2f6f579cac41 (patch) | |
tree | d40078d9143b885b87de0291456a73117767066b /settings | |
parent | 7e78f8e15a536dc57b6fad959fce286b8fc5345c (diff) | |
download | nextcloud-server-f922f836ce11b87192c1904e01da2f6f579cac41.tar.gz nextcloud-server-f922f836ce11b87192c1904e01da2f6f579cac41.zip |
Change old variable name $default_quota to $defaultQuota
Diffstat (limited to 'settings')
-rw-r--r-- | settings/users.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/users.php b/settings/users.php index 26d1026e8c8..07a7620d3c0 100644 --- a/settings/users.php +++ b/settings/users.php @@ -38,7 +38,7 @@ foreach($quotaPreset as &$preset) { $quotaPreset=array_diff($quotaPreset, array('default', 'none')); $defaultQuota=OC_Appconfig::getValue('files', 'default_quota', 'none'); -$defaultQuotaIsUserDefined=array_search($default_quota, $quotaPreset)===false && array_search($default_quota, array('none', 'default'))===false; +$defaultQuotaIsUserDefined=array_search($defaultQuota, $quotaPreset)===false && array_search($defaultQuota, array('none', 'default'))===false; // load users and quota foreach($accessibleusers as $i) { |