PDA

View Full Version : Newest Post First (at the top)


domelor
11-13-2004, 07:28 AM
I need to have Newest Post First (at the top) in one specifc thread.

Anyone knows how this can be done???

Bryan

Colin F
11-13-2004, 08:00 AM
Hmmm.... try this (untested):

in your showthread.php file, find:

if ($bbuserinfo['postorder'] == 0)
{
$postorder = '';
}
else
{
$postorder = 'DESC';
}


replace that with:
if ($threadid == 'xx')
{
$postorder = '';
}
else
{
if ($bbuserinfo['postorder'] == 0)
{
$postorder = '';
}
else
{
$postorder = 'DESC';
}
}


replace xx with the threadid of the thread you want this to happen to.

domelor
11-13-2004, 10:30 PM
Thank you very much for your prompt reply...
you guys are great