Fix bug wrong due date after moving a task on the calendar

This commit is contained in:
Frederic Guillot 2015-03-21 11:57:53 -04:00
parent 61358710c2
commit 9e4eac94fc
1 changed files with 1 additions and 1 deletions

View File

@ -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),
));
}
}