diff options
Diffstat (limited to 'settings/templates/users.php')
-rw-r--r-- | settings/templates/users.php | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/settings/templates/users.php b/settings/templates/users.php index 3e1eb9a0bbe..d8200bf2022 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -109,7 +109,7 @@ var isadmin = <?php echo $_['isadmin']?'true':'false'; ?>; class="subadminsselect" data-username="<?php echo $user['name'] ;?>" data-subadmin="<?php echo $user['subadmin'] ;?>" - data-placeholder="subadmins" title="<?php echo $l->t('SubAdmin for ...')?>" + data-placeholder="subadmins" title="<?php echo $l->t('SubAdmin')?>" multiple="multiple"> <?php foreach($_["subadmingroups"] as $group): ?> <option value="<?php echo $group;?>"> @@ -141,9 +141,12 @@ var isadmin = <?php echo $_['isadmin']?'true':'false'; ?>; </select> <input class='quota-other'></input> </div> </td> - <td class="remove"><?php if($user['name']!=OC_User::getUser()):?> <img - alt="Delete" title="<?php echo $l->t('Delete')?>" class="svg action" - src="<?php echo image_path('core','actions/delete.svg') ?>" /> <?php endif;?> + <td class="remove"> + <?php if($user['name']!=OC_User::getUser()):?> + <a href="#" class="action delete" original-title="<?php echo $l->t('Delete')?>"> + <img src="<?php echo image_path('core','actions/delete.svg') ?>" /> + </a> + <?php endif;?> </td> </tr> <?php endforeach; ?> |