From 91155d1330f04b9be1a7722ef0335ba87fd11cbc Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 1 Nov 2011 18:43:24 +0100 Subject: [PATCH] [ticket/10437] Do not display announcements that are waiting for approval PHPBB3-10437 --- phpBB/viewforum.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index e0b51bf782..215911c8cb 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -376,6 +376,12 @@ if ($forum_data['forum_type'] == FORUM_POST) while ($row = $db->sql_fetchrow($result)) { + if (!$row['topic_approved'] && !$auth->acl_get('m_approve', $row['forum_id'])) + { + // Do not display announcements that are waiting for approval. + continue; + } + $rowset[$row['topic_id']] = $row; $announcement_list[] = $row['topic_id'];