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 functionAlthought this function is no longer used, in case anyone decides to use it, the function would not return any value.<