MyBB Community Forums

Full Version: Order of Online members on Index
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Could be worth to have a thought on the order of members online, displayed on the index page.

Currently Bots are displayed first, followed by real members.
$onlinemembers = array_merge($onlinebots, $onlinemembers);

Why not put real members into first place and append Bots to the end. Simply switch the order like this:
$onlinemembers = array_merge($onlinemembers, $onlinebots);
(v1.8.29, index.php, line 184)

[ETS]

Edit:
As well as in portal.php, line 320.