aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewforum.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/viewforum.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/viewforum.php')
-rw-r--r--phpBB/viewforum.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php
index 4b4007949c..c180bd098d 100644
--- a/phpBB/viewforum.php
+++ b/phpBB/viewforum.php
@@ -741,6 +741,7 @@ 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') : '',
'S_TOPIC_TYPE' => $row['topic_type'],
'S_USER_POSTED' => (isset($row['topic_posted']) && $row['topic_posted']) ? true : false,