In post.asp find the following code. Should be around line 499." <input name=""Type"" type=""hidden"" value=""" & Request.QueryString("type") & """>" & vbNewLine & _
Change it to this:" <input name=""Type"" type=""hidden"" value=""" & strRqType & """>" & vbNewLine & _
This and surrounding code looks like this:Response.Write ">" & vbNewLine & _
" <input name=""ARCHIVE"" type=""hidden"" value=""" & ArchiveView & """>" & vbNewLine & _
" <input name=""Method_Type"" type=""hidden"" value=""" & strRqMethod & """>" & vbNewLine & _
" <input name=""Type"" type=""hidden"" value=""" & strRqType & """>" & vbNewLine & _
" <input name=""REPLY_ID"" type=""hidden"" value=""" & strRqReplyID & """>" & vbNewLine & _
" <input name=""TOPIC_ID"" type=""hidden"" value=""" & strRqTopicID & """>" & vbNewLine & _
" <input name=""FORUM_ID"" type=""hidden"" value=""" & strRqForumId & """> " & vbNewLine & _
" <input name=""CAT_ID"" type=""hidden"" value=""" & strRqCatID & """>" & vbNewLine
In post.asp find the following code. Should be around line 74.if Request.QueryString("REPLY_ID") <> "" then
if IsNumeric(Request.QueryString("REPLY_ID")) = True then
strRqReplyID = cLng(Request.QueryString("REPLY_ID"))
else
Response.Redirect("default.asp")
end if
end if
And add the following code after it:if Request.QueryString("type") <> "" then
if strRqMethod = "URL" or strRqMethod = "EditURL" then
strRqType = 1
else
strRqType = 0
end if
end if
This and surrounding code should look like this:if Request.QueryString("REPLY_ID") <> "" then
if IsNumeric(Request.QueryString("REPLY_ID")) = True then
strRqReplyID = cLng(Request.QueryString("REPLY_ID"))
else
Response.Redirect("default.asp")
end if
end if
if Request.QueryString("type") <> "" then
if strRqMethod = "URL" or strRqMethod = "EditURL" then
strRqType = 1
else
strRqType = 0
end if
end if
strCkPassWord = Request.Cookies(strUniqueID & "User")("Pword")
<