diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-01-26 20:08:11 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-01-26 20:08:11 -0500 |
commit | 320c7971f606a0c9caa4a20bcfcbc2fe2f6c9c00 (patch) | |
tree | e25dfa34d6115296ec1ef5f1c317b9bb417b0e5e /app/Controller | |
parent | 2945097aee1c4a5ba1625ad15224574cd81a6d99 (diff) | |
parent | 648e03a8d063252e9e7d84f854da64d1e59337a1 (diff) |
Merge pull-request #1737
Diffstat (limited to 'app/Controller')
-rw-r--r-- | app/Controller/BoardTooltip.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/BoardTooltip.php b/app/Controller/BoardTooltip.php index ed58a2f2..bcf7de81 100644 --- a/app/Controller/BoardTooltip.php +++ b/app/Controller/BoardTooltip.php @@ -19,7 +19,7 @@ class BoardTooltip extends Base { $task = $this->getTask(); $this->response->html($this->template->render('board/tooltip_tasklinks', array( - 'links' => $this->taskLink->getAll($task['id']), + 'links' => $this->taskLink->getAllGroupedByLabel($task['id']), 'task' => $task, ))); } |