diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-12-18 17:05:27 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-12-18 17:05:27 +0100 |
commit | 96ae18db59084d0494d13ab63f7bc5e02080e8e3 (patch) | |
tree | 4ea817f608bd7f0b3e5e5afa7292db862b11c7b9 /apps/files/templates/list.php | |
parent | 7faf3d17e58ff86c092cd33073975871c58767f6 (diff) | |
download | nextcloud-server-96ae18db59084d0494d13ab63f7bc5e02080e8e3.tar.gz nextcloud-server-96ae18db59084d0494d13ab63f7bc5e02080e8e3.zip |
get rid of unnecessary alt and title attributes
Diffstat (limited to 'apps/files/templates/list.php')
-rw-r--r-- | apps/files/templates/list.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/templates/list.php b/apps/files/templates/list.php index 7d28016bd76..4224d9bc100 100644 --- a/apps/files/templates/list.php +++ b/apps/files/templates/list.php @@ -72,7 +72,7 @@ <a class="name sort columntitle" data-sort="name"><span><?php p($l->t( 'Name' )); ?></span><span class="sort-indicator"></span></a> <span id="selectedActionsList" class="selectedActions"> <a href="" class="download"> - <img class="svg" alt="Download" + <img class="svg" alt="" src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>" /> <?php p($l->t('Download'))?> </a> @@ -86,7 +86,7 @@ <a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t( 'Modified' )); ?></span><span class="sort-indicator"></span></a> <span class="selectedActions"><a href="" class="delete-selected"> <?php p($l->t('Delete'))?> - <img class="svg" alt="<?php p($l->t('Delete'))?>" + <img class="svg" alt="" src="<?php print_unescaped(OCP\image_path("core", "actions/delete.svg")); ?>" /> </a></span> </th> |