Model.class.php代码中的1088行开始:
return NOW_TIME >= $start && NOW_TIME <= $end;
为校验当前时间而非提交的时间字段值。
应改为:
if(!is_numeric($value)) $value = strtotime($value);
return $value >= $start && $value <= $end;
时间: 2024-10-11 21:43:47
Model.class.php代码中的1088行开始:
return NOW_TIME >= $start && NOW_TIME <= $end;
为校验当前时间而非提交的时间字段值。
应改为:
if(!is_numeric($value)) $value = strtotime($value);
return $value >= $start && $value <= $end;