
09-18-2002, 05:27 PM
|
|
|
Join Date: Mar 2002
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally posted by g-force2k2
wolfe make sure you have the $forumactive variable in the getinfo template...
PsYc open the getinfo template find:
PHP Code:
$f_posts = floor(($t_post[ppforum] / $userinfo[posts]) * 100);
replace it with:
PHP Code:
if($t_posts[ppforum] > 0) {
$f_posts = floor(($t_post[ppforum] / $userinfo[posts]) * 100);
} else {
$f_posts = 0;
}
that should do the trick... regards...
g-force2k2
|
thank you  works great
|