Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2014-04-20 02:22:55 +0400
committerArthur Schiwon <blizzz@owncloud.com>2014-06-02 14:53:57 +0400
commit59fef54e92d19d2976a6896e6da1cfc1b79c3d1f (patch)
tree5ced78e86f805ddbd7c25bdb5f9648585e38b485 /settings/users.php
parent0067306fd6596bf549717fe51994dcfa0ab76498 (diff)
Rename $accessibleusers to $accessibleUsers
Diffstat (limited to 'settings/users.php')
-rw-r--r--settings/users.php6
1 files changed, 3 insertions, 3 deletions
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;