i'm using ver. 3.4.06.
when viewing admin_variable_info.asp page i got this error at /STRBADWORDS line:
Microsoft VBScript runtime error '800a005e'
Invalid use of Null: 'cstr'
/admin_variable_info.asp, line 156
i changed line 153 so that this chunk of code:
if Application.Contents(key) = "" then
Response.Write " "
else
Response.Write chkString(CStr(Application.Contents(key)), "admindisplay")
end if
looks like this:
if Application.Contents(key) = "" or IsNull(Application.Contents(key)) then
Response.Write " "
else
Response.Write chkString(CStr(Application.Contents(key)), "admindisplay")
end if
can you guys verify that this is a good enough solution?
i got tons of "bad words" that are displayed at /STRBADWORDWORDS line so i guess /STRBADWORDS above is not used/needed in this version of forum?