Quote:
Originally Posted by Cold Steel
When you're viewing the online users block as a regular, non-admin member, there are a lot of extra commas for invisible users.
Is there a way to fix this?
|
Is this the Currently online users, or the users online today (if shown) part?
Try this edit in vbindex.php find:
PHP Code:
$home['onlinemembertotal']--;
break 1;
Replace with:
PHP Code:
$home['onlinemembertotal']--;
continue;
That should fix the error if its the currently online users.