|
From: Jonathan H. <the...@us...> - 2002-03-25 23:03:36
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv3788
Modified Files:
usercp_viewprofile.php
Log Message:
fix bug #534904
Index: usercp_viewprofile.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_viewprofile.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** usercp_viewprofile.php 18 Mar 2002 23:53:12 -0000 1.3
--- usercp_viewprofile.php 25 Mar 2002 23:03:32 -0000 1.4
***************
*** 133,137 ****
for($i = 0; $i < count($ranksrow); $i++)
{
! if ( $profiledata['user_posts'] > $ranksrow[$i]['rank_min'] && !$ranksrow[$i]['rank_special'] )
{
$poster_rank = $ranksrow[$i]['rank_title'];
--- 133,137 ----
for($i = 0; $i < count($ranksrow); $i++)
{
! if ( $profiledata['user_posts'] >= $ranksrow[$i]['rank_min'] && !$ranksrow[$i]['rank_special'] )
{
$poster_rank = $ranksrow[$i]['rank_title'];
***************
*** 231,233 ****
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
\ No newline at end of file
--- 231,233 ----
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
|