diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-07-19 18:14:20 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-07-19 18:14:20 -0400 |
commit | 401b0bdfb10ebfe75c9a392de52d37cc3c22c062 (patch) | |
tree | 841bf69b8d404a29ab92692a9ebfb8d5a7e500e1 /app/Controller/Comment.php | |
parent | fcdd71af2cabdd1252172ac83a24be8672ca34cc (diff) |
Split task controller into smaller classes
Diffstat (limited to 'app/Controller/Comment.php')
-rw-r--r-- | app/Controller/Comment.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Comment.php b/app/Controller/Comment.php index ca701a88..7b9d4aee 100644 --- a/app/Controller/Comment.php +++ b/app/Controller/Comment.php @@ -93,7 +93,7 @@ class Comment extends Base $this->response->redirect($this->helper->url->to('board', 'show', array('project_id' => $task['project_id']))); } - $this->response->redirect($this->helper->url->to('task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])), 'comments'); + $this->response->redirect($this->helper->url->to('task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), 'comments')); } $this->create($values, $errors); |