From 59fef54e92d19d2976a6896e6da1cfc1b79c3d1f Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sun, 20 Apr 2014 00:22:55 +0200 Subject: Rename $accessibleusers to $accessibleUsers --- settings/users.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'settings/users.php') 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; -- cgit v1.2.3