diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-08-13 20:23:04 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-08-13 20:23:04 -0400 |
commit | 521379a350da1e67be88a81f0434ec8f5df37e5e (patch) | |
tree | b034123255ce2b65d96131d34bae2157483ab73b /app/Controller/ActivityController.php | |
parent | ada3e6f89d5adc73eb1ede2a49447cea86b89c53 (diff) |
Display same task summary on all task view pages
Diffstat (limited to 'app/Controller/ActivityController.php')
-rw-r--r-- | app/Controller/ActivityController.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Controller/ActivityController.php b/app/Controller/ActivityController.php index 9f9841af..476e4aac 100644 --- a/app/Controller/ActivityController.php +++ b/app/Controller/ActivityController.php @@ -40,6 +40,7 @@ class ActivityController extends BaseController 'task' => $task, 'project' => $this->projectModel->getById($task['project_id']), 'events' => $this->helper->projectActivity->getTaskEvents($task['id']), + 'tags' => $this->taskTagModel->getList($task['id']), ))); } } |