diff options
Diffstat (limited to 'settings/templates/users.php')
-rw-r--r-- | settings/templates/users.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/settings/templates/users.php b/settings/templates/users.php index 9b64696547f..d8200bf2022 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -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; ?> |