diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-04-24 17:03:09 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-04-24 17:03:09 -0400 |
commit | f74d7ef209701bba905c0179b30f24a6e3faa5db (patch) | |
tree | 1034252a7525c24e8dc828c9e010b56faca272e8 /app/Template/task_creation | |
parent | 51ec4b4cf86c7f4a7552f8e01cee704cc6b4b57b (diff) |
Added more template hooks
Diffstat (limited to 'app/Template/task_creation')
-rw-r--r-- | app/Template/task_creation/form.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/task_creation/form.php b/app/Template/task_creation/form.php index 9bfd839f..c963bdcf 100644 --- a/app/Template/task_creation/form.php +++ b/app/Template/task_creation/form.php @@ -29,7 +29,7 @@ <?= $this->form->checkbox('another_task', t('Create another task'), 1, isset($values['another_task']) && $values['another_task'] == 1) ?> <?php endif ?> - <?= $this->hook->render('template:task:form:left-column', array('values'=>$values, 'errors'=>$errors)) ?> + <?= $this->hook->render('template:task:form:left-column', array('values' => $values, 'errors' => $errors)) ?> </div> <div class="form-column"> @@ -43,7 +43,7 @@ <?= $this->task->selectTimeEstimated($values, $errors) ?> <?= $this->task->selectDueDate($values, $errors) ?> - <?= $this->hook->render('template:task:form:right-column', array('values'=>$values, 'errors'=>$errors)) ?> + <?= $this->hook->render('template:task:form:right-column', array('values' => $values, 'errors' => $errors)) ?> </div> <div class="form-actions"> |