diff options
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r-- | phpBB/viewtopic.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 1d101393f5..5b175040d1 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -319,7 +319,7 @@ for($i = 0; $i < $total_posts; $i++) // // Generate ranks // - if( $postrow[$i]['user_id'] == ANONYMOUS ) + if( empty($postrow[$i]['user_rank']) || $postrow[$i]['user_id'] == ANONYMOUS ) { $poster_rank = ""; $rank_image = ""; |