diff options
author | raghunayyar <me@iraghu.com> | 2014-01-28 21:36:48 +0530 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2014-06-02 12:52:52 +0200 |
commit | b506388b75c8454ef54ce05fa0d98db854c10faf (patch) | |
tree | 82908d5c68d88cc7a7833bac4b34988064b8fdc0 /settings/templates | |
parent | b2ca595509a1c14eb28768e4eed99a3ba6eba46a (diff) | |
download | nextcloud-server-b506388b75c8454ef54ce05fa0d98db854c10faf.tar.gz nextcloud-server-b506388b75c8454ef54ce05fa0d98db854c10faf.zip |
Reverts last commit, implements user in group count.
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/users.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/settings/templates/users.php b/settings/templates/users.php index 83b54543b02..a56c7229c1a 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -29,7 +29,10 @@ $_['subadmingroups'] = array_flip($items); <!--List of Groups--> <?php foreach($_["groups"] as $group): ?> <li> - <a href="#"><?php p($group['name']);?></a> + <a href="#"><?php p($group['name']); ?></a> + <span class="utils"> + <span class="usercount"><?php p(count($group['useringroup'])); ?></span> + </span> </li> <?php endforeach; ?> </ul> |