The Forum has been Updated
The code has been upgraded to the latest .NET core version. Please check instructions in the Community Announcements about migrating your account.
If you use private forums and notice that the calendar control highlights the dates of your events for guests, you can apply this mod to cal_functions.asp to correct the problem.
Find the two places in cal_functions.asp (line 85 and 235 aprox) that looke like:
Replace this with the following code:
<
Find the two places in cal_functions.asp (line 85 and 235 aprox) that looke like:
Code:
If not rs.EOF then strDates = rs.GetString(,,,",") else blnNoDates = TRUE
Replace this with the following code:
Code:
if not(rs.EOF or rs.BOF) then
rs.MoveFirst
do until rs.EOF
if chkForumAccess(rs("FORUM_ID"),MemberID,FALSE) then
if len(strDates) > 0 then strDates = strDates & ","
strDates = strDates & rs("EVENT_DATE")
end if
rs.MoveNext
loop
else
blnNoDates = TRUE
end if
<