diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-11-16 23:03:12 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-11-16 23:03:12 +0000 |
commit | d7c80869997214e231b25271caee0bd57b3be7aa (patch) | |
tree | 421298635d0108b04bfc9c3149c2cd71ca6d1d8a /phpBB/viewtopic.php | |
parent | 8787c41e92d20c2f2f57aaba8be0d7ce35dccf46 (diff) | |
download | forums-d7c80869997214e231b25271caee0bd57b3be7aa.tar forums-d7c80869997214e231b25271caee0bd57b3be7aa.tar.gz forums-d7c80869997214e231b25271caee0bd57b3be7aa.tar.bz2 forums-d7c80869997214e231b25271caee0bd57b3be7aa.tar.xz forums-d7c80869997214e231b25271caee0bd57b3be7aa.zip |
Rank code playing silly beggars again, I hate that game personally
git-svn-id: file:///svn/phpbb/trunk@1342 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 f882777d31..a16efadb0e 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -767,7 +767,7 @@ for($i = 0; $i < $total_posts; $i++) { for($j = 0; $j < count($ranksrow); $j++) { - if($postrow[$i]['user_posts'] > $ranksrow[$j]['rank_min'] && $postrow[$i]['user_posts'] < $ranksrow[$j]['rank_max'] && !$ranksrow[$j]['rank_special']) + if($postrow[$i]['user_posts'] >= $ranksrow[$j]['rank_min'] && $postrow[$i]['user_posts'] < $ranksrow[$j]['rank_max'] && !$ranksrow[$j]['rank_special']) { $poster_rank = $ranksrow[$j]['rank_title']; $rank_image = ($ranksrow[$j]['rank_image']) ? "<img src=\"" . $ranksrow[$j]['rank_image'] . "\"><br />" : ""; |