summaryrefslogtreecommitdiff
path: root/app/Controller
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-02-09 21:37:31 -0500
committerFrederic Guillot <fred@kanboard.net>2015-02-09 21:37:31 -0500
commit755b38f09e9f6494129f55b96baff6672981a073 (patch)
tree6814720b5c42d785410cd9ee0c1e64b77893436b /app/Controller
parent77a307e4ff8cfb4afcd34990b147f0ad38dfc558 (diff)
Code cleanup + minor css improvement
Diffstat (limited to 'app/Controller')
-rw-r--r--app/Controller/Board.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Board.php b/app/Controller/Board.php
index 758dea1e..e859348e 100644
--- a/app/Controller/Board.php
+++ b/app/Controller/Board.php
@@ -283,7 +283,7 @@ class Board extends Base
if ($valid) {
- if ($this->board->addColumn($project['id'], $data['title'],$data['task_limit'],$data['description'])) {
+ if ($this->board->addColumn($project['id'], $data['title'], $data['task_limit'], $data['description'])) {
$this->session->flash(t('Board updated successfully.'));
$this->response->redirect('?controller=board&action=edit&project_id='.$project['id']);
}