I think we have come up with a fix for the percentage problem, but I need to have someone test it that has a large board. Try this and let me know if it fixes this one percentage. If it does, I will post the rest of the fix for this.
In Index.php
Find:
PHP Code:
$statscache['topthreadspercent'] = round(100 * ($topstarter[count] / $totalthreads), 2);
and replace it with:
PHP Code:
$statscache['topthreadspercent'] = sprintf("%.2f",(100*$topstarter[count] / $totalthreads));
Find:
PHP Code:
if (($statscache['topthreadspercent'] % 10) == 0)
$statscache['topthreadspercent'] = vb_number_format($statscache['topthreadspercent']) . '%';
else
$statscache['topthreadspercent'] = vb_number_format($statscache['topthreadspercent'], 2) . '%';
and replace it with:
PHP Code:
$statscache['topthreadspercent'] = vb_number_format($statscache['topthreadspercent'], 2) . '%';
Let me know how it goes.