Make sure this line is right. I think your missing the parts in red.
In "inc_func_common.asp" find this code around line 406
if fField_Type <> "signature" and fField_Type <> "title" then
fString = doCode(fString, "[quote ]", "[/quote]", "<blockquote id=""quote""><font size=""" & strFooterFontSize & """ face=""" & strDefaultFontFace & """ id=""quote"">quote:<hr height=""1"" noshade id=""quote"">", "<hr height=""1"" noshade id=""quote""></font id=""quote""></blockquote id=""quote"">")
end if
I've had this happen, the code has to be character perfect or the replace in "inc_func_posting.asp" won't happen.
Better yet. The parts in red have to be identical.
inc_func_common.asp
if fField_Type <> "signature" and fField_Type <> "title" then
fString = doCode(fString, "[quote ]", "[/quote]", "<blockquote id=""quote""><font size=""" & strFooterFontSize & """ face=""" & strDefaultFontFace & """ id=""quote"">quote:<hr height=""1"" noshade id=""quote"">", "<hr height=""1"" noshade id=""quote""></font id=""quote""></blockquote id=""quote"">")
end if
inc_func_posting.asp around line 97
fString = replace(fString, "<blockquote id=""quote""><font size=""" & strFooterFontSize & """ face=""" & strDefaultFontFace & """ id=""quote"">quote:<hr height=""1"" noshade id=""quote"">","[quote ]", 1, -1, 1)
fString = replace(fString, "<hr height=""1"" noshade id=""quote""></font id=""quote""></blockquote id=""quote"">","[/quote]", 1, -1, 1)