diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-02-18 14:08:38 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-02-18 14:08:38 -0500 |
commit | 45771b685df963b77c15130e49bac0df92034aaf (patch) | |
tree | 27785c5e75303f214a5581c1db3a19d07bbe9483 /app/Controller/ProjectTagController.php | |
parent | c7b7c060a6f0c6866e05199e828053e6690e9413 (diff) |
Improve tags management in project settings
Diffstat (limited to 'app/Controller/ProjectTagController.php')
-rw-r--r-- | app/Controller/ProjectTagController.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/app/Controller/ProjectTagController.php b/app/Controller/ProjectTagController.php index acf514d3..d225f0ca 100644 --- a/app/Controller/ProjectTagController.php +++ b/app/Controller/ProjectTagController.php @@ -18,8 +18,8 @@ class ProjectTagController extends BaseController $this->response->html($this->helper->layout->project('project_tag/index', array( 'project' => $project, - 'tags' => $this->tagModel->getAllByProject($project['id']), - 'title' => t('Project tags management'), + 'tags' => $this->tagModel->getAllByProject($project['id']), + 'title' => t('Project tags management'), ))); } @@ -33,8 +33,8 @@ class ProjectTagController extends BaseController $this->response->html($this->template->render('project_tag/create', array( 'project' => $project, - 'values' => $values, - 'errors' => $errors, + 'values' => $values, + 'errors' => $errors, ))); } @@ -69,9 +69,9 @@ class ProjectTagController extends BaseController $this->response->html($this->template->render('project_tag/edit', array( 'project' => $project, - 'tag' => $tag, - 'values' => $values, - 'errors' => $errors, + 'tag' => $tag, + 'values' => $values, + 'errors' => $errors, ))); } @@ -107,7 +107,7 @@ class ProjectTagController extends BaseController $tag = $this->tagModel->getById($tag_id); $this->response->html($this->template->render('project_tag/remove', array( - 'tag' => $tag, + 'tag' => $tag, 'project' => $project, ))); } |