BUG
When the Category and Forum ordering was introduced, the sorting of the active topics was also changed.
But when that was done, the forum-id was removed from the sort statement.
That was wrong, since it wasn't only used for sorting the topics, but also to group them together, so that all topics from the same forum were after each other.
FIX
Add the forum-id back to the sort.
In Active.asp change this line:
strSql = strSql & " ORDER BY C.CAT_ORDER, F.F_ORDER, T.T_LAST_POST DESC;"
to:
strSql = strSql & " ORDER BY C.CAT_ORDER, C.CAT_NAME, F.F_ORDER, F.F_SUBJECT, T.T_LAST_POST DESC "
Pierre
Join a Snitz Mailinglist