[ticket/9837] Display unapproved posts to originator

Fix whitespace issues

PHPBB3-9837
This commit is contained in:
v12mike 2019-09-11 08:23:21 -04:00 committed by Marc Alexander
parent e102a9a3cb
commit 46a189fa4c
No known key found for this signature in database
GPG key ID: 50E0D2423696F995
2 changed files with 7 additions and 7 deletions

View file

@ -899,8 +899,8 @@ if (count($topic_list))
// Replies
$replies = $phpbb_content_visibility->get_count('topic_posts', $row, $topic_forum_id) - 1;
//correct for case of unapproved topic visible to poster - a bit dirty but efficient
if ($replies < 0)
//correct for case of unapproved topic visible to poster - a bit dirty but efficient
if ($replies < 0)
{
$replies = 0;
}