diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-03-12 21:21:24 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-03-12 21:21:24 -0400 |
commit | 925ede9b48bef67739d26f0d0a394342f2d8edf0 (patch) | |
tree | d2ce47cb3793f8e64831ff7e04b3cddb35dcc498 /app/Template/task | |
parent | ac19e36b55b566f61d750e801134396fd4d3fada (diff) | |
parent | b747b9750b697b863fcadbbbeb0ed94220e57961 (diff) |
Merge and improve pull-request #704
Diffstat (limited to 'app/Template/task')
-rw-r--r-- | app/Template/task/show.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/task/show.php b/app/Template/task/show.php index ec930715..50316c9f 100644 --- a/app/Template/task/show.php +++ b/app/Template/task/show.php @@ -1,7 +1,7 @@ <?= $this->render('task/details', array('task' => $task, 'project' => $project)) ?> <?= $this->render('task/time', array('task' => $task, 'values' => $values, 'date_format' => $date_format, 'date_formats' => $date_formats)) ?> <?= $this->render('task/show_description', array('task' => $task)) ?> -<?= $this->render('tasklink/show', array('task' => $task, 'links' => $links)) ?> +<?= $this->render('tasklink/show', array('task' => $task, 'links' => $links, 'link_label_list' => $link_label_list)) ?> <?= $this->render('subtask/show', array('task' => $task, 'subtasks' => $subtasks, 'project' => $project)) ?> <?= $this->render('task/timesheet', array('task' => $task)) ?> <?= $this->render('file/show', array('task' => $task, 'files' => $files, 'images' => $images)) ?> |