post_info.asp
On line #797 find the following:
if ForumChkSkipAllowed = 1 then
strSql = strSql & ", T_STICKY"
end if
and change it to:
strSql = strSql & ", T_STICKY"
then on line #824 find the following:
if ForumChkSkipAllowed = 1 then
if Request.Form("sticky") = 1 then
strSql = strSql & ", 1 "
else
strSql = strSql & ", 0 "
end if
end if
and change it to look like this:
if ForumChkSkipAllowed = 1 then
if Request.Form("sticky") = 1 then
strSql = strSql & ", 1 "
else
strSql = strSql & ", 0 "
end if
else
strSql = strSql & ", 0 "
end if