use "undo" icon instead of comment for restoring posts

This commit is contained in:
psychobunny
2014-06-11 16:47:20 -04:00
parent b12ca5ab9f
commit 3198275209
3 changed files with 3 additions and 3 deletions

View File

@@ -116,7 +116,7 @@ define('forum/topic/threadTools', ['forum/topic/fork', 'forum/topic/move'], func
return;
}
translator.translate('<i class="fa fa-fw ' + (data.isDelete ? 'fa-comment' : 'fa-trash-o') + '"></i> [[topic:thread_tools.' + (data.isDelete ? 'restore' : 'delete') + ']]', function(translated) {
translator.translate('<i class="fa fa-fw ' + (data.isDelete ? 'fa-history' : 'fa-trash-o') + '"></i> [[topic:thread_tools.' + (data.isDelete ? 'restore' : 'delete') + ']]', function(translated) {
$('.delete_thread span').html(translated);
});