diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-03-12 09:14:39 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-03-12 09:14:39 +0100 |
commit | 5da250148bc3a1a3a5be2c9fd9f6eb239d4410c1 (patch) | |
tree | 37bc3db09c81a9970bf0148703130c677d9cccf3 /phpBB/viewforum.php | |
parent | 1970ee9854393329a3f805742e6e0e693add71b5 (diff) | |
download | forums-5da250148bc3a1a3a5be2c9fd9f6eb239d4410c1.tar forums-5da250148bc3a1a3a5be2c9fd9f6eb239d4410c1.tar.gz forums-5da250148bc3a1a3a5be2c9fd9f6eb239d4410c1.tar.bz2 forums-5da250148bc3a1a3a5be2c9fd9f6eb239d4410c1.tar.xz forums-5da250148bc3a1a3a5be2c9fd9f6eb239d4410c1.zip |
[ticket/9657] Finish subsilver2 viewforum and viewtopic
PHPBB3-9657
Diffstat (limited to 'phpBB/viewforum.php')
-rw-r--r-- | phpBB/viewforum.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index a86b48140c..4b4007949c 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -324,6 +324,7 @@ $template->assign_vars(array( 'FOLDER_MOVED_IMG' => $user->img('topic_moved', 'TOPIC_MOVED'), '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'), 'GOTO_PAGE_IMG' => $user->img('icon_post_target', 'GOTO_PAGE'), 'L_NO_TOPICS' => ($forum_data['forum_status'] == ITEM_LOCKED) ? $user->lang['POST_FORUM_LOCKED'] : $user->lang['NO_TOPICS'], @@ -740,8 +741,6 @@ if (sizeof($topic_list)) 'TOPIC_ICON_IMG_WIDTH' => (!empty($icons[$row['icon_id']])) ? $icons[$row['icon_id']]['width'] : '', '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', $row['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', 'POSTS_DELETED') : '', 'S_TOPIC_TYPE' => $row['topic_type'], 'S_USER_POSTED' => (isset($row['topic_posted']) && $row['topic_posted']) ? true : false, |