diff options
author | Joas Schilling <coding@schilljs.com> | 2018-01-24 14:22:20 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-03-08 17:13:49 +0100 |
commit | cb2fbdd214ddda422fb7a57f5779ca450b6a0411 (patch) | |
tree | 532d501047d59e885195360a6229f67f65e9de1a /settings/templates | |
parent | db9b2398dd50ccd46b20cacf2336669cf3eddde7 (diff) | |
download | nextcloud-server-cb2fbdd214ddda422fb7a57f5779ca450b6a0411.tar.gz nextcloud-server-cb2fbdd214ddda422fb7a57f5779ca450b6a0411.zip |
Fix group display name in the sidebar of the user management
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/users/part.grouplist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/users/part.grouplist.php b/settings/templates/users/part.grouplist.php index 469ed94adb3..4128a6b76e4 100644 --- a/settings/templates/users/part.grouplist.php +++ b/settings/templates/users/part.grouplist.php @@ -50,7 +50,7 @@ <!--List of Groups--> <?php foreach($_["groups"] as $group): ?> - <li data-gid="<?php p($group['name']) ?>" data-usercount="<?php p($group['usercount']) ?>" class="isgroup"> + <li data-gid="<?php p($group['id']) ?>" data-usercount="<?php p($group['usercount']) ?>" class="isgroup"> <a href="#" class="dorename"> <span class="groupname"><?php p($group['name']); ?></span> </a> |