Author Topic: user_online_list  (Read 3558 times)

0 Members and 1 Guest are viewing this topic.

Offline uksoreeyes

  • Full Member
  • ***
  • Posts: 117
    • View Profile
    • http://www.myleeneklass.com
user_online_list
« on: March 27, 2003, 11:13:53 PM »
Hi, is there any way I get get the user online list to display the results under eachother eg:

user_1
user_2
user_3
user_4

rather than beside eachother like this:

user_1, user_2, user_3, user_4

Thanks in advance

Carl

Offline V@no

  • If you don't tell me what to do, I won't tell you where you should go :)
  • Global Moderator
  • 4images Guru
  • *****
  • Posts: 17.849
  • mmm PHP...
    • View Profile
    • 4images MODs Demo
user_online_list
« Reply #1 on: March 27, 2003, 11:29:39 PM »
in /includes/sessions.php
replace:
Code: [Select]
         $user_online_list .= ($user_online_list != "") ? ", " : "";
with:
Code: [Select]
         $user_online_list .= ($user_online_list != "") ? "<br />" : "";
Your first three "must do" before you ask a question:
Please do not PM me asking for help unless you've been specifically asked to do so. Such PMs will be deleted without answer. (forum rule #6)
Extension for Firefox/Thunderbird: Master Password+    Back/Forward History Tweaks (restartless)    Cookies Manager+    Fit Images (restartless for Thunderbird)

Offline uksoreeyes

  • Full Member
  • ***
  • Posts: 117
    • View Profile
    • http://www.myleeneklass.com
user_online_list
« Reply #2 on: March 27, 2003, 11:35:24 PM »
Thanks I looked in their but must have missed it  :D