lasatalayas
Junior Member
109 Posts |
Posted - 13 April 2006 : 13:01:44
|
Did it myself - for anyone interested edit forum.asp around line 70 like this:- Select Case strtopicsortord Case "asc" strSortOrd = " ASC" Case Else strSortOrd = " DESC" End Select
if request("ARCHIVE") = "true" then strSortOrd = " ASC" end if
Select Case strtopicsortfld Case "topic" strSortCol = "T_SUBJECT" & strSortOrd Case "author" strSortCol = "M_NAME" & strSortOrd Case "replies" strSortCol = "T_REPLIES" & strSortOrd Case "views" strSortCol = "T_VIEW_COUNT" & strSortOrd Case "lastpost" strSortCol = "T_LAST_POST" & strSortOrd Case Else if request("ARCHIVE") = "true" then strtopicsortfld = "topic" strSortCol = "T_SUBJECT" & strSortOrd else strtopicsortfld = "lastpost" strSortCol = "T_LAST_POST" & strSortOrd end if End Select strQStopicsort = "FORUM_ID=" & Forum_ID
|
|
|