Find the following code (lines 1260-1264): if strBio = "1" then
strSql = strSql & ", M_BIO = '" & ChkString(Request.Form("Bio"),"message") & "'"
end if
strSql = strSql & ", M_AUHIDE = '" & ChkString(Request.Form("AUHide"),"") & "'"
end if
and replace it with the following code: if strBio = "1" then
strSql = strSql & ", M_BIO = '" & chkString(Request.Form("Bio"),"message") & "'"
end if
if strAUAnon = "1" then
strSql = strSql & ", M_AUHIDE = '" & ChkString(Request.Form("AUHide"),"") & "'"
end if