diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-06-17 13:30:57 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-06-17 13:30:57 +0200 |
commit | 2a5776354251ddfeccc854d2d0af157575afa28d (patch) | |
tree | 48e8e07aed06c38798ddd2c083f748d31de7977c /apps | |
parent | 1f518025a3f5c1078b7b94e93f218b8ed58b556c (diff) | |
download | nextcloud-server-2a5776354251ddfeccc854d2d0af157575afa28d.tar.gz nextcloud-server-2a5776354251ddfeccc854d2d0af157575afa28d.zip |
use history icon in Deleted Files template as well
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_trashbin/js/trash.js | 2 | ||||
-rw-r--r-- | apps/files_trashbin/templates/index.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 307ac743a3c..87dfea491e7 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -2,7 +2,7 @@ $(document).ready(function() { if (typeof FileActions !== 'undefined') { - FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history.svg'), function(filename) { + FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history'), function(filename) { var tr=$('tr').filterAttr('data-file', filename); var spinner = '<img class="move2trash" title="'+t('files_trashbin', 'perform restore operation')+'" src="'+ OC.imagePath('core', 'loading.gif') +'"></a>'; var undeleteAction = $('tr').filterAttr('data-file',filename).children("td.date"); diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index cb5edaa2c91..66ec36df867 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -18,7 +18,7 @@ <span class='selectedActions'> <a href="" class="undelete"> <img class="svg" alt="<?php p($l->t( 'Restore' )); ?>" - src="<?php print_unescaped(OCP\image_path("core", "actions/undelete.png")); ?>" /> + src="<?php print_unescaped(OCP\image_path("core", "actions/history.svg")); ?>" /> <?php p($l->t('Restore'))?> </a> </span> |