diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-04-11 16:26:45 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-04-11 16:26:45 -0400 |
commit | d3727e92a6000a01fb962e559f8e6b936def1fb9 (patch) | |
tree | 23a12c7c7db5644f0a938eb0d4bed2c81d811a61 /app/Template/board/task_public.php | |
parent | 52bc2efc65af690b075d58dcff23eac97d1a0495 (diff) |
Add category description (merge and modify pull-request #692)
Diffstat (limited to 'app/Template/board/task_public.php')
-rw-r--r-- | app/Template/board/task_public.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/Template/board/task_public.php b/app/Template/board/task_public.php index 4e3ad18c..1ab2b3aa 100644 --- a/app/Template/board/task_public.php +++ b/app/Template/board/task_public.php @@ -22,5 +22,10 @@ <?= $this->a($this->e($task['title']), 'task', 'readonly', array('task_id' => $task['id'], 'token' => $project['token'])) ?> </div> - <?= $this->render('board/task_footer', array('task' => $task, 'categories' => $categories)) ?> + <?= $this->render('board/task_footer', array( + 'task' => $task, + 'categories_listing' => $categories_listing, + 'categories_description' => $categories_description, + 'not_editable' => $not_editable, + )) ?> </div>
\ No newline at end of file |