summaryrefslogtreecommitdiff
path: root/controllers
diff options
context:
space:
mode:
Diffstat (limited to 'controllers')
-rw-r--r--controllers/task.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/controllers/task.php b/controllers/task.php
index 7aefb98c..16075ec2 100644
--- a/controllers/task.php
+++ b/controllers/task.php
@@ -186,6 +186,11 @@ class Task extends Base
if (! empty($task['date_due'])) {
$task['date_due'] = date(t('m/d/Y'), $task['date_due']);
}
+ else {
+ $task['date_due'] = '';
+ }
+
+ $task['score'] = $task['score'] ?: '';
$this->response->html($this->template->layout('task_edit', array(
'errors' => array(),
@@ -324,6 +329,15 @@ class Task extends Base
if (! $task) $this->notfound();
$this->checkProjectPermissions($task['project_id']);
+ if (! empty($task['date_due'])) {
+ $task['date_due'] = date(t('m/d/Y'), $task['date_due']);
+ }
+ else {
+ $task['date_due'] = '';
+ }
+
+ $task['score'] = $task['score'] ?: '';
+
$this->response->html($this->template->layout('task_new', array(
'errors' => array(),
'values' => $task,