Quote:
Originally Posted by snake-boy
The ONLY item I still have on my wishlist is to be able to set this as the default sort order for all forums. (On a per-forum would be better, but I'd settle for a global setting.)
|
Global (this is for formumdisplay only) is simple:
In forumdisplay.php FIND
PHP Code:
default:
$sqlsortfield = 'lastpost';
$sortfield = 'lastpost';
REPLACE that with
PHP Code:
default:
$sqlsortfield = 'thread.dateline';
$sortfield = 'threadstarted';
Instructions on how to do this on a per-forum basis will follow.