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