Just realized this as I was updating my forum.
The following function in inc_func_common.asp is missing the text in red:function oldStrToDate(strDateTime)
if ChkDateFormat(strDateTime) then
oldStrToDate = cdate("" & Mid(strDateTime, 5,2) & "/" & ...
else
tmpDate = DatePart("m",strForumTimeAdjust) & "/" & ...
oldStrToDate = "" & tmpDate
end if
end function
Althought this function is no longer used, in case anyone decides to use it, the function would not return any value.<