diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-05-09 16:29:56 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2014-06-02 12:53:59 +0200 |
commit | 29ef2f7a2ffec00b8ce7186f9670f572dce0f872 (patch) | |
tree | d80739ddf08745768b47a67e8cfc2388d51fb395 /settings | |
parent | fc7438b22155313b5f592d8ead1a2636afc17e2c (diff) | |
download | nextcloud-server-29ef2f7a2ffec00b8ce7186f9670f572dce0f872.tar.gz nextcloud-server-29ef2f7a2ffec00b8ce7186f9670f572dce0f872.zip |
user mgmt: hide group rename function because it’s not supported in the backend yet
Diffstat (limited to 'settings')
-rw-r--r-- | settings/templates/users/part.grouplist.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/settings/templates/users/part.grouplist.php b/settings/templates/users/part.grouplist.php index 71ec8f0c502..466fe956cdc 100644 --- a/settings/templates/users/part.grouplist.php +++ b/settings/templates/users/part.grouplist.php @@ -38,8 +38,11 @@ <li data-gid="<?php p($group['name']) ?>" data-usercount="<?php p($group['usercount']) ?>" class="isgroup"> <a href="#" class="dorename"> <span class="groupname"><?php p($group['name']); ?></span> - <img class="svg action rename" src="<?php p(image_path('core', 'actions/rename.svg'))?>" - original-title="<?php p($l->t('Edit'))?>" alt="<?php p($l->t("change group name"))?>" title="<?php p($l->t("change group name"))?>" /> + <!-- TODO: backend does not support renaming groups yet + <img class="svg action rename" + src="<?php p(image_path('core', 'actions/rename.svg'))?>" + original-title="<?php p($l->t('Edit'))?>" alt="" /> + --> </a> <span class="utils"> <span class="usercount"><?php if($group['usercount'] > 0) { p($group['usercount']); } ?></span> |