MyBB Community Forums

Full Version: Very strange Who's Online issue...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have made no recent modifications to my board and it seems today that my board wants to display users online in a weird fashion. There are no longer commas (,) separating users.

Here is a screenshot for better explanation:

[Image: m8obys.png]

And mind you I've tried different browsers, 4 different themes and they all do the same thing.

How can I fix this?
(2010-02-23, 02:00 AM)Downfall Wrote: [ -> ]I have made no recent modifications to my board and it seems today that my board wants to display users online in a weird fashion. There are no longer commas (,) separating users.

Here is a screenshot for better explanation:

[Image: m8obys.png]

And mind you I've tried different browsers, 4 different themes and they all do the same thing.

How can I fix this?
i have no idea on how could you fixed it
but i loved the mini-icons of each group
Nope it's just using <img> tags in the group editor, I learned that from when I used to work with IPB. Those were the days Toungue
See what your ACP > Configuration > General Configuration > Thousands Numeric Separator setting as this might be used. If that is set to a comma then go:
ACP > Templates & Styles > Templates > Select template > Forum Index Templates > index_whosonline_memberbit and see if {$comma} is there, if it is then you might be able to just put a comma there or if its not then you could put it back. I just don't know where that comma variable is defined.
Chances are you're missing {$comma} as I believe the comma is defined in the file itself.
The {$comma} is there in all template files but just doesn't seem to be parsing at all. If I manually put a comma in it works. How can I make sure that the $comma variable is outputting correctly?
First off, upload a fresh copy of ./index.php, that's where it's defined, it's in 3 places so uploading a new copy would probably be easier. If it's not solved then can you make sure your index_whosonline_memberbit template is this:

{$comma}{$user['profilelink']}{$invisiblemark}
Thank you, that fixed my problem. Smile