Quote:
Originally Posted by Wordplay
i got the comma out of the forumhome but any ideas on how to get it out of the vbadvanced module?
|
Find in onlineusers.php
----------------------
Code:
if ($onlinemod['modid'])
{
if ($activeusers)
{
$com = ', ';
and change the ,
Code:
if ($onlinemod['modid'])
{
if ($activeusers)
{
$com = '<br /> ';
So a few lines down you'd have:
PHP Code:
eval('$activeusers .= "$com ' . fetch_template('forumhome_loggedinuser') . '";');
And that will display them on a seperate line each, you can also add an $nbsp; for a whitespace.