MyBB Community Forums

Full Version: Sort online list?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys,

I want to sort online list by usergroup.. Is this possible?
you mean sort it like...
Admin, Admin2, Admin3 MOD, Mod2, Mod3Member, Member2, Member3 like that? If thats the case I don't think you can, and why would you need that anyways? seems pretty useless to me in my opinion

It requires a core modification.

Open index.php in your MyBB root and search for (around ln 55):
ORDER BY u.username ASC, s.time DESC
and replace with:
ORDER BY u.usergroup ASC, s.time DESC