MyBB Community Forums

Full Version: Memberlist default sorting
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Thanx in advance man Smile
It looks to be more problematic. Unrated members are on the top of the list Sad
I've had a play but I can't seem to recreate your first problem.

All I can think of is that you may have missed something. You did remember to take note of the changes outlined in this post didn't you?

http://www.mybbmods.com/forum/showthread...590#pid590

If so, I'm not really sure what could be causing this problem.

chiefsaab Wrote:It looks to be more problematic. Unrated members are on the top of the list Sad

For this problem, find this in memberlist.php...

elseif($by == "rating")
{
	$order = "ASC";
}

...and change it to this...

elseif($by == "rating")
{
	$order = "DESC";
}
Pages: 1 2