* fix for drag to todo.

This commit is contained in:
z
2020-06-28 16:57:34 +08:00
parent 0e70771cd8
commit a7afe0318c
+1 -1
View File
@@ -38,7 +38,7 @@ class todoModel extends model
->remove('bug, task, story, uid, feedback')
->get();
if($todo->end <= $todo->begin)
if($todo->end < $todo->begin)
{
dao::$errors[] = sprintf($this->lang->error->gt, $this->lang->todo->end, $this->lang->todo->begin);
return false;