Minor fixes

This commit is contained in:
Frederic Guillot
2016-06-05 18:22:19 -04:00
parent 9ce6a28419
commit 5ffdf286e7
5 changed files with 15 additions and 5 deletions

View File

@@ -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']),