diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2014-02-25 15:22:20 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2014-06-02 12:53:54 +0200 |
commit | a4cfa9554548c53a3d0aa267495427729deb9352 (patch) | |
tree | 59ec32e21168250a2526a6f5f3392e85d8b65cb9 /settings/templates/users | |
parent | 480173569fdf729c33c076c62a31a15ad9c57057 (diff) | |
download | nextcloud-server-a4cfa9554548c53a3d0aa267495427729deb9352.tar.gz nextcloud-server-a4cfa9554548c53a3d0aa267495427729deb9352.zip |
restructure group.js and put functions to object, also add group list sorting after adding.
Diffstat (limited to 'settings/templates/users')
-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 6acf12a952f..4b1958c1a67 100644 --- a/settings/templates/users/part.grouplist.php +++ b/settings/templates/users/part.grouplist.php @@ -32,7 +32,7 @@ <!--List of Groups--> <?php foreach($_["groups"] as $group): ?> - <li data-gid="<?php p($group['name']) ?>"> + <li data-gid="<?php p($group['name']) ?>" data-usercount="<?php p(count($group['useringroup'])) ?>"> <a href="#"> <span><?php p($group['name']); ?></span> <img class="svg action rename" src="<?php p(image_path('core', 'actions/rename.svg'))?>" |