diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-07-06 21:28:56 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-07-06 21:28:56 +0000 |
commit | 184e4b36f45e21158f4debd2929e66b7711d546c (patch) | |
tree | b3df4a6c6a672a033ff43c97571c3bfce69b2a56 /phpBB/viewtopic.php | |
parent | 2170cd3a9dc06ab98fa47c71a227170be37c8752 (diff) | |
download | forums-184e4b36f45e21158f4debd2929e66b7711d546c.tar forums-184e4b36f45e21158f4debd2929e66b7711d546c.tar.gz forums-184e4b36f45e21158f4debd2929e66b7711d546c.tar.bz2 forums-184e4b36f45e21158f4debd2929e66b7711d546c.tar.xz forums-184e4b36f45e21158f4debd2929e66b7711d546c.zip |
Minor irritation with ranks fixed
git-svn-id: file:///svn/phpbb/trunk@587 89ea8834-ac86-4346-8a33-228a782c2dd0
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 = ""; |