diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-02-14 13:01:51 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-02-14 13:01:51 +0100 |
commit | e8190c6511113e2602476cc8ba35c73d8ee39fc0 (patch) | |
tree | ce5e758bf38719b16d64d9f8f032ca19c3e2cd30 /settings/templates | |
parent | f9a6ed6c73bd4f20cb7a504aa9c20e95fe860d7f (diff) | |
download | nextcloud-server-e8190c6511113e2602476cc8ba35c73d8ee39fc0.tar.gz nextcloud-server-e8190c6511113e2602476cc8ba35c73d8ee39fc0.zip |
fix user delete button not showing in IE, another SVG replacement issue
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/users.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/users.php b/settings/templates/users.php index 09a6ae72806..53a66fb4686 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -159,7 +159,7 @@ $_['subadmingroups'] = array_flip($items); <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') ?>" /> + <img src="<?php echo image_path('core', 'actions/delete.svg') ?>" class="svg" /> </a> <?php endif;?> </td> |