diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-03-18 21:00:14 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-03-18 21:00:14 -0400 |
commit | 854457baf0043b51ce9c30f36a6fecaed97cb04d (patch) | |
tree | 0f73023f63654ee7313ac79e83d9d19e58658a1a /app/Controller/Tasklink.php | |
parent | 68fba8fb64afe00aedccdf72f25d79b26356f2ab (diff) |
Improve task summary sections
Diffstat (limited to 'app/Controller/Tasklink.php')
-rw-r--r-- | app/Controller/Tasklink.php | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/app/Controller/Tasklink.php b/app/Controller/Tasklink.php index b051caad..a7f4914b 100644 --- a/app/Controller/Tasklink.php +++ b/app/Controller/Tasklink.php @@ -29,27 +29,6 @@ class Tasklink extends Base } /** - * Show links - * - * @access public - */ - public function show() - { - $task = $this->getTask(); - $project = $this->project->getById($task['project_id']); - - $this->response->html($this->helper->layout->task('tasklink/show', array( - 'links' => $this->taskLink->getAllGroupedByLabel($task['id']), - 'task' => $task, - 'project' => $project, - 'link_label_list' => $this->link->getList(0, false), - 'editable' => true, - 'is_public' => false, - 'show_title' => true, - ))); - } - - /** * Creation form * * @access public |