Quote:
Originally Posted by Reece_B
|
Hey there,
Try doing this:
- Open vrssi.php
- Around line 195 find:
PHP Code:
$sql = mysql_query("SELECT * FROM $threads_table WHERE forumid != 0 $disabled_forums LIMIT $amount");
- Replace with:
PHP Code:
$sql = mysql_query("SELECT * FROM $threads_table WHERE forumid != 0 $disabled_forums ORDER BY forumid DESC LIMIT $amount");
And if for some reason it doesn't work, change DESC to ASC. That should fix it for you.