Due to the volume of spam happening on our forums, posting is now restricted to verified members only. If you're not verified, drop us a note with your username.
I have the forum module installed and what happens is that when someone posts a new topic it appears above the old topics.... which is kind of confusing.
Is there a way to make new topics appear below old topics?
DCSun Administrator
Posts: 625
February 11, 2008 @ 1:34pm
Hello,
inc-mb-idx.php is the main file that controls the front end of the message board. Line 636 should be:
Code
$query = "select * from `".$Settings['DBPrefix']."mb-Threads` where BoardID=".$Arguments2." order by Sticky desc, LastReply desc";
which you can change to this:
Code
$query = "select * from `".$Settings['DBPrefix']."mb-Threads` where BoardID=".$Arguments2." order by Sticky desc, StartedDate asc";
to have the desired result. If that's not what you were looking for, that's the line you'll need to adjust for the order threads are displayed in.