|
From: Paul S. O. <ps...@us...> - 2001-11-29 12:47:41
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv13580
Modified Files:
profile.php
Log Message:
Fixed bug #486800 which is probably caused by pruning of posts ... can't see any other reason at present
Index: profile.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/profile.php,v
retrieving revision 1.149
retrieving revision 1.150
diff -C2 -r1.149 -r1.150
*** profile.php 2001/11/27 20:03:08 1.149
--- profile.php 2001/11/29 12:47:39 1.150
***************
*** 252,256 ****
{
$total_posts = get_db_stat("postcount");
! $percentage = ( $total_posts ) ? sprintf("%.2f", ($profiledata['user_posts'] / $total_posts) * 100) : 0;
}
else
--- 252,256 ----
{
$total_posts = get_db_stat("postcount");
! $percentage = ( $total_posts ) ? sprintf("%.2f", max(100, ($profiledata['user_posts'] / $total_posts) * 100)) : 0;
}
else
|