diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-03-08 22:02:42 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-03-08 22:02:42 -0500 |
commit | f91f3214c12e315afd8984653ea2d9db8408793d (patch) | |
tree | 45de211e61189da032f1646f67c4de2a566558dc /app/Controller/Taskstatus.php | |
parent | d4eea1e252771e5f764c7654c7b9fc1b86b2ce9d (diff) |
Always display project name and task title in task views
Diffstat (limited to 'app/Controller/Taskstatus.php')
-rw-r--r-- | app/Controller/Taskstatus.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Taskstatus.php b/app/Controller/Taskstatus.php index c07f2cc5..a67459c9 100644 --- a/app/Controller/Taskstatus.php +++ b/app/Controller/Taskstatus.php @@ -55,7 +55,7 @@ class Taskstatus extends Base return $this->response->redirect($this->helper->url->to('task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])), true); } - $this->response->html($this->helper->layout->task($template, array( + $this->response->html($this->template->render($template, array( 'task' => $task, ))); } |