aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorv12mike <github@ingenious.co.nz>2019-11-03 14:17:47 +0100
committerMarc Alexander <admin@m-a-styles.de>2019-11-21 13:44:22 +0100
commit4d156837332707542bed6899cbf872c441f7bd96 (patch)
treea7ea8ef0d63c6f537ee95352b6deec63f3ffb7bf /phpBB
parent8726baea9fd0b0ba9a09a00f24c4bb616ccec8cd (diff)
downloadforums-4d156837332707542bed6899cbf872c441f7bd96.tar
forums-4d156837332707542bed6899cbf872c441f7bd96.tar.gz
forums-4d156837332707542bed6899cbf872c441f7bd96.tar.bz2
forums-4d156837332707542bed6899cbf872c441f7bd96.tar.xz
forums-4d156837332707542bed6899cbf872c441f7bd96.zip
[ticket/9837] Display unapproved posts to their authors
Clarification of comment PHPBB3-9837
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/viewforum.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php
index 787667fcd7..eb6b37ada8 100644
--- a/phpBB/viewforum.php
+++ b/phpBB/viewforum.php
@@ -899,7 +899,7 @@ 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
+ // Correction for case of unapproved topic visible to poster
if ($replies < 0)
{
$replies = 0;