Fix PHP error in task views (tag colors)

This commit is contained in:
Cyboulette
2019-01-19 22:38:50 +01:00
committed by fguillot
parent f3b944c77f
commit cc34318bc7
2 changed files with 5 additions and 5 deletions

View File

@@ -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']),
)));
}
}