Quote:
Originally Posted by firstrebel
How can the two stats be on two separate lines instead of the one, it would look tidier I think.
|
I disagree, but if you want to do it, edit the plugin code.
Change ;
PHP Code:
$activeusers = $activeusers."<br />".$maxmemberstext." ".$maxgueststext;
To ;
PHP Code:
$activeusers .= "<br />".$maxmemberstext."<br />".$maxgueststext;