summaryrefslogtreecommitdiff
path: root/app/Controller/ActionCreationController.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-06-05 18:22:19 -0400
committerFrederic Guillot <fred@kanboard.net>2016-06-05 18:22:19 -0400
commit5ffdf286e7cebd522f406fbeb83f78e4e4a3b711 (patch)
tree1ab4d8fa6ed4364a4774b933214de36cf596f4e3 /app/Controller/ActionCreationController.php
parent9ce6a284193cf07404872a3c3ad746c1f1f4f5db (diff)
Minor fixes
Diffstat (limited to 'app/Controller/ActionCreationController.php')
-rw-r--r--app/Controller/ActionCreationController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controller/ActionCreationController.php b/app/Controller/ActionCreationController.php
index e984f8d4..abd8abd3 100644
--- a/app/Controller/ActionCreationController.php
+++ b/app/Controller/ActionCreationController.php
@@ -40,7 +40,7 @@ class ActionCreationController extends BaseController
return $this->create();
}
- $this->response->html($this->template->render('action_creation/event', array(
+ return $this->response->html($this->template->render('action_creation/event', array(
'values' => $values,
'project' => $project,
'available_actions' => $this->actionManager->getAvailableActions(),
@@ -72,7 +72,7 @@ class ActionCreationController extends BaseController
$projects_list = $this->projectUserRoleModel->getActiveProjectsByUser($this->userSession->getId());
unset($projects_list[$project['id']]);
- $this->response->html($this->template->render('action_creation/params', array(
+ return $this->response->html($this->template->render('action_creation/params', array(
'values' => $values,
'action_params' => $action_params,
'columns_list' => $this->columnModel->getList($project['id']),