diff options
author | v12mike <github@ingenious.co.nz> | 2019-11-03 14:17:47 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-11-21 13:44:22 +0100 |
commit | 4d156837332707542bed6899cbf872c441f7bd96 (patch) | |
tree | a7ea8ef0d63c6f537ee95352b6deec63f3ffb7bf /phpBB | |
parent | 8726baea9fd0b0ba9a09a00f24c4bb616ccec8cd (diff) | |
download | forums-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.php | 2 |
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; |