summaryrefslogtreecommitdiff
path: root/app/Controller/Task.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-12-28 11:28:50 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-12-28 11:28:50 -0500
commit34d7450d3c13342715e90ec21bceaa13e1baa876 (patch)
treea2d8f2f22ad3fe9b56f01fe2db0357f9b963e660 /app/Controller/Task.php
parent88d84073aecbe8bdc5f10825b6d7ca6b81c5f7b1 (diff)
Template helpers refactoring
Diffstat (limited to 'app/Controller/Task.php')
-rw-r--r--app/Controller/Task.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Controller/Task.php b/app/Controller/Task.php
index 33b4b039..284cbec0 100644
--- a/app/Controller/Task.php
+++ b/app/Controller/Task.php
@@ -89,7 +89,7 @@ class Task extends Base
public function create(array $values = array(), array $errors = array())
{
$project = $this->getProject();
- $method = $this->request->isAjax() ? 'load' : 'layout';
+ $method = $this->request->isAjax() ? 'render' : 'layout';
if (empty($values)) {
@@ -179,7 +179,7 @@ class Task extends Base
);
if ($ajax) {
- $this->response->html($this->template->load('task/edit', $params));
+ $this->response->html($this->template->render('task/edit', $params));
}
else {
$this->response->html($this->taskLayout('task/edit', $params));
@@ -410,7 +410,7 @@ class Task extends Base
);
if ($ajax) {
- $this->response->html($this->template->load('task/edit_description', $params));
+ $this->response->html($this->template->render('task/edit_description', $params));
}
else {
$this->response->html($this->taskLayout('task/edit_description', $params));