diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-02-09 21:34:55 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-02-09 21:34:55 -0500 |
commit | 8d8ca37e73b3058b12a578b8aace7a869d53f840 (patch) | |
tree | 9a3a757e4012b9ea407588e54522c6e7cf792471 /app/Controller/Gantt.php | |
parent | 3a44db6029fb2d833d75fbc70c424e3f9cb85d82 (diff) |
Add more hooks
Diffstat (limited to 'app/Controller/Gantt.php')
-rw-r--r-- | app/Controller/Gantt.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Controller/Gantt.php b/app/Controller/Gantt.php index 2d1edc08..c8c8a8a3 100644 --- a/app/Controller/Gantt.php +++ b/app/Controller/Gantt.php @@ -108,6 +108,7 @@ class Gantt extends Base ); $values = $this->hook->merge('controller:task:form:default', $values, array('default_values' => $values)); + $values = $this->hook->merge('controller:task:form:gantt', $values, array('default_values' => $values)); $this->response->html($this->template->render('gantt/task_creation', array( 'project' => $project, |