I need to have it that way anywhere you get to it from the board.
Edit: I got it. I just replaced:
PHP Code:
// look at sorting options:
if ($sortorder != 'asc')
{
with:
PHP Code:
// look at sorting options:
if ($sortorder != 'asc' AND $foruminfo['forumid'] != '37')
{
and that took care of it.
g-force2k2, I changed the code that you suggested to this:
PHP Code:
default:
if ( $foruminfo['forumid'] == '37' ):
$sqlsortfield = 'thread.title';
$sortfield = 'thread.title';
else:
$sqlsortfield = 'lastpost';
$sortfield = 'lastpost';
endif;
That will be ok, right?