I confirm this error. This is caused by the changes in chkString Function in inc_functions.asp file. Compared to v3.2a6, this time it exists the function if its called with the "title" parameter, thus not executing the
fString = Replace(fString, "'", "''")
line at the bottom of the function.
A good fix should analyze other parameters (as this is security related I leave it to one of the admins), but a quick fix can be changing (line #403):
if fField_Type = "title" then
if strAllowHTML <> "1" then
fString = HTMLEncode(fString)
end if
chkBadWords(fString)
chkString = fString
exit function
end if
To
if fField_Type = "title" then
if strAllowHTML <> "1" then
fString = HTMLEncode(fString)
end if
chkBadWords(fString)
fString = Replace(fString, "'", "''")
chkString = fString
exit function
end if
Think Pink