The other solution is to do as below
File Post.asp
Find the following statements around Lines 329-334
if strRqMethod = "ReplyQuote" then
TxtMsg = "[quote][i]Originally posted by " & chkString(rs("M_NAME"),"display") & "[/i]" & vbNewline
TxtMsg = TxtMsg & "
" & rs("R_MESSAGE") & vbNewline
TxtMsg = TxtMsg & "[/quote]"
end if
Modify the above as below
if strRqMethod = "ReplyQuote" then
TxtMsg = rs("R_MESSAGE")
end if
Find the following statements around Lines 354-358
if strRqMethod = "TopicQuote" then
TxtMsg = "[quote][i]Originally posted by " & chkString(rs("M_NAME"),"display") & "[/i]" & vbNewline
TxtMsg = TxtMsg & "
" & rs("T_MESSAGE") & vbNewline
TxtMsg = TxtMsg & "[/quote]"
end if
Modify the above as below
if strRqMethod = "TopicQuote" then
TxtMsg = rs("T_MESSAGE")
end if