Quote:
Originally Posted by Julrou
Bump  
|
Your problem seems to be your decimal sep (
$vbulletin->userinfo['lang_decimalsep']).
Although, to fix it, you could try editing your vaispy.php file:
FIND
PHP Code:
$thread['views'] = vb_number_format($thread['views']);
REPLACE WITH
PHP Code:
$thread['views'] = vb_number_format($thread['views']);
$thread['views'] = str_replace(' ', '', $thread['views']);