diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2014-02-25 10:21:10 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2014-06-02 12:53:53 +0200 |
commit | 17e640af22d07c5ecede6ae1b6d1a89509e104a9 (patch) | |
tree | bf6a85fd77269ae77f707516017a707b7a90759a /settings/templates/users/part.grouplist.php | |
parent | 506e065f23f1bcc36762cd8347d0e8135503ed45 (diff) | |
download | nextcloud-server-17e640af22d07c5ecede6ae1b6d1a89509e104a9.tar.gz nextcloud-server-17e640af22d07c5ecede6ae1b6d1a89509e104a9.zip |
set admin gid to Admins filter. I.e. hard-coding the admin group, but this is OC reality atm - other admin groups are not possible.
Diffstat (limited to 'settings/templates/users/part.grouplist.php')
-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 7833bb69a1a..51351733d0d 100644 --- a/settings/templates/users/part.grouplist.php +++ b/settings/templates/users/part.grouplist.php @@ -17,7 +17,7 @@ <!-- The Admin Group --> <?php foreach($_["adminGroup"] as $adminGroup): ?> - <li> + <li data-gid="admin"> <a href="#"><?php p($l->t('Admins')); ?></a> <span class="utils"> <span class="usercount"><?php if(count($adminGroup['useringroup']) > 0) { p(count($adminGroup['useringroup'])); } ?></span> |