diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-07-07 19:15:53 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-07-07 19:15:53 -0400 |
commit | 58297ca3b11b9ad526a8ac344e5ac56d9e1b5a13 (patch) | |
tree | c20ff7b7463e0fa97667a2f17c482c85e015f7e3 /app/Controller | |
parent | 5e7e03a866459047b677e57be33eee991aa57214 (diff) |
Add datetime picker for start date
Diffstat (limited to 'app/Controller')
-rw-r--r-- | app/Controller/Task.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Task.php b/app/Controller/Task.php index 2d4f783a..bb859679 100644 --- a/app/Controller/Task.php +++ b/app/Controller/Task.php @@ -64,7 +64,7 @@ class Task extends Base 'time_spent' => $task['time_spent'] ?: '', ); - $this->dateParser->format($values, array('date_started')); + $this->dateParser->format($values, array('date_started'), 'Y-m-d H:i'); $this->response->html($this->taskLayout('task/show', array( 'project' => $this->project->getById($task['project_id']), |