summaryrefslogtreecommitdiffstats
path: root/settings/ajax/userlist.php
diff options
context:
space:
mode:
authorFelix Moeller <mail@felixmoeller.de>2012-11-04 22:16:04 +0100
committerFelix Moeller <mail@felixmoeller.de>2012-11-04 22:16:04 +0100
commita4b2ea586dea5e02a91a873d16a20144db7292a0 (patch)
tree1f936fcd3d1a3d314d80986cef76cb8d84514194 /settings/ajax/userlist.php
parent1e33ad9cbcd2282db5cb64b933bfe8844d582acf (diff)
downloadnextcloud-server-a4b2ea586dea5e02a91a873d16a20144db7292a0.tar.gz
nextcloud-server-a4b2ea586dea5e02a91a873d16a20144db7292a0.zip
Style: Remove all the dangling white spaces
Diffstat (limited to 'settings/ajax/userlist.php')
-rw-r--r--settings/ajax/userlist.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/settings/ajax/userlist.php b/settings/ajax/userlist.php
index 61b1a388fc3..eaeade60a39 100644
--- a/settings/ajax/userlist.php
+++ b/settings/ajax/userlist.php
@@ -32,9 +32,9 @@ if (OC_Group::inGroup(OC_User::getUser(), 'admin')) {
$batch = OC_User::getUsers('', 10, $offset);
foreach ($batch as $user) {
$users[] = array(
- 'name' => $user,
- 'groups' => join(', ', OC_Group::getUserGroups($user)),
- 'subadmin' => join(', ', OC_SubAdmin::getSubAdminsGroups($user)),
+ 'name' => $user,
+ 'groups' => join(', ', OC_Group::getUserGroups($user)),
+ 'subadmin' => join(', ', OC_SubAdmin::getSubAdminsGroups($user)),
'quota' => OC_Preferences::getValue($user, 'files', 'quota', 'default'));
}
} else {
@@ -42,8 +42,8 @@ if (OC_Group::inGroup(OC_User::getUser(), 'admin')) {
$batch = OC_Group::usersInGroups($groups, '', 10, $offset);
foreach ($batch as $user) {
$users[] = array(
- 'name' => $user,
- 'groups' => join(', ', OC_Group::getUserGroups($user)),
+ 'name' => $user,
+ 'groups' => join(', ', OC_Group::getUserGroups($user)),
'quota' => OC_Preferences::getValue($user, 'files', 'quota', 'default'));
}
}