From: Lukas Reschke Date: Sat, 19 Apr 2014 22:22:55 +0000 (+0200) Subject: Rename $accessibleusers to $accessibleUsers X-Git-Tag: v7.0.0alpha2~144^2~28 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=59fef54e92d19d2976a6896e6da1cfc1b79c3d1f;p=nextcloud-server.git Rename $accessibleusers to $accessibleUsers --- diff --git a/settings/users.php b/settings/users.php index 76431e78513..88efcb82cce 100644 --- a/settings/users.php +++ b/settings/users.php @@ -43,10 +43,10 @@ $recoveryAdminEnabled = OC_App::isEnabled('files_encryption') && OC_Appconfig::getValue( 'files_encryption', 'recoveryAdminEnabled' ); if($isAdmin) { - $accessibleusers = OC_User::getDisplayNames('', 30); + $accessibleUsers = OC_User::getDisplayNames('', 30); $subadmins = OC_SubAdmin::getAllSubAdmins(); }else{ - $accessibleusers = OC_Group::displayNamesInGroups($groups, '', 30); + $accessibleUsers = OC_Group::displayNamesInGroups($groups, '', 30); $subadmins = false; } @@ -63,7 +63,7 @@ $defaultQuotaIsUserDefined=array_search($defaultQuota, $quotaPreset)===false && array_search($defaultQuota, array('none', 'default'))===false; // load users and quota -foreach($accessibleusers as $uid => $displayName) { +foreach($accessibleUsers as $uid => $displayName) { $quota=OC_Preferences::getValue($uid, 'files', 'quota', 'default'); $isQuotaUserDefined=array_search($quota, $quotaPreset)===false && array_search($quota, array('none', 'default'))===false;