Quote:
Originally Posted by SecondV
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']);
|
I've just read it and...
it totally works !!!
You're the man ! :up::up::up:
One more question : at this time, it only shows the last post for each thread. Is there a way to show the really last 20 posts, even if some are posts of a same thread ?