Fix bug wrong due date after moving a task on the calendar
This commit is contained in:
parent
61358710c2
commit
9e4eac94fc
|
|
@ -98,7 +98,7 @@ class Calendar extends Base
|
|||
|
||||
$this->taskModification->update(array(
|
||||
'id' => $values['task_id'],
|
||||
'date_due' => $values['date_due'],
|
||||
'date_due' => substr($values['date_due'], 0, 10),
|
||||
));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue