aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/search.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-03-12 11:10:44 +0100
committerJoas Schilling <nickvergessen@gmx.de>2013-03-12 11:10:44 +0100
commita67daa8c8aa742525850108d362730499fddfdce (patch)
tree7b88299053bb95340b4e75f2eb3c48e7effbaf58 /phpBB/search.php
parent74b731f0f71ba406c95a1eca1278b6396274faed (diff)
downloadforums-a67daa8c8aa742525850108d362730499fddfdce.tar
forums-a67daa8c8aa742525850108d362730499fddfdce.tar.gz
forums-a67daa8c8aa742525850108d362730499fddfdce.tar.bz2
forums-a67daa8c8aa742525850108d362730499fddfdce.tar.xz
forums-a67daa8c8aa742525850108d362730499fddfdce.zip
[ticket/9657] Fix some more subsilver2
PHPBB3-9657
Diffstat (limited to 'phpBB/search.php')
-rw-r--r--phpBB/search.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/search.php b/phpBB/search.php
index 5b61879e8d..585bd61f0a 100644
--- a/phpBB/search.php
+++ b/phpBB/search.php
@@ -623,6 +623,7 @@ if ($keywords || $author || $author_id || $search_id || $submit)
'NEWEST_POST_IMG' => $user->img('icon_topic_newest', 'VIEW_NEWEST_POST'),
'REPORTED_IMG' => $user->img('icon_topic_reported', 'TOPIC_REPORTED'),
'UNAPPROVED_IMG' => $user->img('icon_topic_unapproved', 'TOPIC_UNAPPROVED'),
+ 'DELETED_IMG' => $user->img('icon_topic_deleted', 'TOPIC_DELETED'),
'LAST_POST_IMG' => $user->img('icon_topic_latest', 'VIEW_LATEST_POST'),
'U_SEARCH_WORDS' => $u_search,
@@ -907,7 +908,6 @@ if ($keywords || $author || $author_id || $search_id || $submit)
'TOPIC_ICON_IMG_HEIGHT' => (!empty($icons[$row['icon_id']])) ? $icons[$row['icon_id']]['height'] : '',
'ATTACH_ICON_IMG' => ($auth->acl_get('u_download') && $auth->acl_get('f_download', $forum_id) && $row['topic_attachment']) ? $user->img('icon_topic_attach', $user->lang['TOTAL_ATTACHMENTS']) : '',
'UNAPPROVED_IMG' => ($topic_unapproved || $posts_unapproved) ? $user->img('icon_topic_unapproved', ($topic_unapproved) ? 'TOPIC_UNAPPROVED' : 'POSTS_UNAPPROVED') : '',
- 'DELETED_IMG' => ($topic_deleted) ? $user->img('icon_topic_deleted', 'POST_DELETED_RESTORE') : '',
'S_TOPIC_TYPE' => $row['topic_type'],
'S_USER_POSTED' => (!empty($row['topic_posted'])) ? true : false,