diff --git a/phpBB/includes/topic_review.php b/phpBB/includes/topic_review.php index bc4d0b05e4..6e11fef8bb 100644 --- a/phpBB/includes/topic_review.php +++ b/phpBB/includes/topic_review.php @@ -139,6 +139,11 @@ function topic_review($topic_id, $is_inline_review) $poster = $row['post_username']; $poster_rank = $lang['Guest']; } + elseif ( $poster_id == ANONYMOUS ) + { + $poster = $lang['Guest']; + $poster_rank = ''; + } $post_subject = ( $row['post_subject'] != '' ) ? $row['post_subject'] : ''; @@ -218,4 +223,4 @@ function topic_review($topic_id, $is_inline_review) } } -?> \ No newline at end of file +?>