MyBB Community Forums

Full Version: Sort methode stored mod
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey,

I made a quick mod. With this you can store your sort method. It only apply's for all forums, not different sorts per forums.

I'm no great modder, so here goes:

*moved to frontpage*

Have fun Smile

ps screenie is not neccesery, because everything looks the same Smile
Thanks again for another contribution Da Dude.

The direct link to this mod is http://www.mybbmods.com/view.php?did=47. Smile
i will have a look tomorrow @ the code, there's a bug with the ASC/DESC method...

temp fix:

if($order == "asc")
{
	$sortorder = "ASC";
	$ordersel['asc'] = "selected=\\"selected\\"";
}
else
{
	$sortorder = "DESC";
	$ordersel['desc'] = "selected=\\"selected\\"";
	$order = "desc";
}
Version 1.1 added to frontpage Smile

Changes:
--------

- Fixed ASC/Desc sort in mysql global sort store
- Added Cookie global sort store
- Added Cookie per forum sort store
- Added mysql global sort store

http://www.mybbmods.com/view.php?did=47