Never mind. I found the problem. After searching the forum I found this:
You added some poll mod code incorrectly into your post.asp file.
The poll mod code, starting at line 378 - 414, needs to be moved to the line after 442:
if strRqMethod = "EditTopic" then
TxtMsg = rs("T_MESSAGE")
else
if strRqMethod = "TopicQuote" then
TxtMsg = "[quote ][i ]Originally posted by " & chkString(rs("M_NAME"),"display") & "[/i ]" & vbNewline
TxtMsg = TxtMsg & "[br ]" & rs("T_MESSAGE") & vbNewline
TxtMsg = TxtMsg & "[/quote ]"
end if
end if
'Put poll mod code here
end if
My problem was that I put it after a section that looked very similar to the above line. Only the part in orange above said R_MESSAGE. Oops...
This is a great MOD by the way. It does take a long time to add and is not for the squeamish! It was the hardest MOD so far I've installed, but it is well worth it!!