mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 00:40:56 +02:00
[ticket/9837] Display unapproved posts to originator
Fix whitespace issues PHPBB3-9837
This commit is contained in:
@ -899,8 +899,8 @@ if (count($topic_list))
|
|||||||
|
|
||||||
// Replies
|
// Replies
|
||||||
$replies = $phpbb_content_visibility->get_count('topic_posts', $row, $topic_forum_id) - 1;
|
$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
|
//correct for case of unapproved topic visible to poster - a bit dirty but efficient
|
||||||
if ($replies < 0)
|
if ($replies < 0)
|
||||||
{
|
{
|
||||||
$replies = 0;
|
$replies = 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user