Quote:
Originally Posted by Xenon
sounds like a incorrect hack for me as well.
numberformating problem i'd say.
be sure you have that line, just be called once:
PHP Code:
$userinfo['posts'] = vb_number_format($userinfo['posts']);
and afterwards make sure, that below that line, isn't something like:
PHP Code:
$userinfo['posts'] = intval($userinfo['posts']);
at least that would result in exactly the problem you explained.
|
aaahhh I have that line twice, but which to remove?
member.php
PHP Code:
// User has been a member for less than one day.
$userinfo['posts'] = vb_number_format($userinfo['posts']);
$postsperday = $userinfo['posts'];
}
else
{
$postsperday = vb_number_format($userinfo['posts'] / $jointime, 2);
$userinfo['posts'] = vb_number_format($userinfo['posts']);
}
// THREADS STARTED AND THREADS PER DAY