PDA

View Full Version : currently active users has space before comma


neologan
02-21-2007, 08:16 AM
between each online user in the 'currently active users' box, there is a space before each comma like this:

user1 , user2 , user3 , user4

how do i get rid of the space?

thanks!

CyberAlien
02-21-2007, 08:37 AM
Make sure there isn't any spacing at the end of forumhome_loggedinuser template

If that won't help then in index.php find this: eval('$activeusers .= ", ' . fetch_template('forumhome_loggedinuser') . '";');
and replace with this: eval('$activeusers .= ", ' . trim(fetch_template('forumhome_loggedinuser')) . '";');

neologan
02-21-2007, 08:50 AM
thanks for the help, but it's still there :confused:

EvilHawk
02-21-2007, 02:08 PM
Try this: vBulletin Option > General Settings> Add Template Name in HTML Comments: set to No ... ;)

neologan
02-21-2007, 02:11 PM
that worked, thanks :) have been working on my forums over the past few days so thats why it was on, it didn't click that it could be this that was causing it. Thanks again :up: