diff options
author | Cyboulette <cyboulette58@gmail.com> | 2019-01-19 22:38:50 +0100 |
---|---|---|
committer | fguillot <fred@kanboard.net> | 2019-01-19 13:38:50 -0800 |
commit | cc34318bc79403421be582c15186eb4d523013a1 (patch) | |
tree | e08a19bf07b8d758c745a2ebbdf6bf7792256c75 /app/Controller/ActivityController.php | |
parent | f3b944c77f54e988de250acf30239010bdfa2399 (diff) |
Fix PHP error in task views (tag colors)
Diffstat (limited to 'app/Controller/ActivityController.php')
-rw-r--r-- | app/Controller/ActivityController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/ActivityController.php b/app/Controller/ActivityController.php index 7a58e670..5db02529 100644 --- a/app/Controller/ActivityController.php +++ b/app/Controller/ActivityController.php @@ -56,7 +56,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']), + 'tags' => $this->taskTagModel->getTagsByTask($task['id']), ))); } } |