post_info.asp
on line #539 find the following:
if Request.Form("sticky") = 1 then
strSql = strSql & ", T_STICKY = " & 1
else
strSql = strSql & ", T_STICKY = " & 0
end if
then make it look like this (adding the lines in red):
if ForumChkSkipAllowed = 1 then
if Request.Form("sticky") = 1 then
strSql = strSql & ", T_STICKY = " & 1
else
strSql = strSql & ", T_STICKY = " & 0
end if
end if
on line #797 find this:
strSql = strSql & ", T_STICKY"
then make it look like this (adding the lines in red)
if ForumChkSkipAllowed = 1 then
strSql = strSql & ", T_STICKY"
end if
on line #826 find this:
if Request.Form("sticky") = 1 then
strSql = strSql & ", 1 "
else
strSql = strSql & ", 0 "
end if
change it to look like this (adding the lines in red)
if ForumChkSkipAllowed = 1 then
if Request.Form("sticky") = 1 then
strSql = strSql & ", 1 "
else
strSql = strSql & ", 0 "
end if
end if