for the Sticky Topics:
find the following on line #247 of forum.asp:
if nDays = "-1" then
strSql3 = strSql3 & " AND T.T_STATUS <> 0 "
end if
change it to this:
if nDays = "-1" then
if strStickyTopic = "1" then
strSql3 = strSql3 & " AND (T.T_STATUS <> 0 OR T.T_STICKY = 1)"
else
strSql3 = strSql3 & " AND T.T_STATUS <> 0 "
end if
end if