summaryrefslogtreecommitdiff
path: root/app/Controller/Config.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-02-13 17:50:20 -0500
committerFrederic Guillot <fred@kanboard.net>2015-02-13 17:50:20 -0500
commit364382b1b58db8bf1bd2c8866e21c869a7a5d6d0 (patch)
treee1bdaf8c76bbb6036b3bb7a3a19e8cc1e2e99604 /app/Controller/Config.php
parent124f7cad284d7ce867666def5731ad34a9265e63 (diff)
Add task links (Merge pull-request #610)
Diffstat (limited to 'app/Controller/Config.php')
-rw-r--r--app/Controller/Config.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/app/Controller/Config.php b/app/Controller/Config.php
index 01c7ad53..6ec10279 100644
--- a/app/Controller/Config.php
+++ b/app/Controller/Config.php
@@ -87,12 +87,17 @@ class Config extends Base
*
* @access public
*/
- public function board()
+ public function board(array $values = array(), array $errors = array())
{
$this->common('board');
$this->response->html($this->layout('config/board', array(
'default_columns' => implode(', ', $this->board->getDefaultColumns()),
+ 'links' => $this->link->getMergedList(),
+ 'values' => $values + array(
+ 'project_id' => -1
+ ),
+ 'errors' => $errors,
'title' => t('Settings').' &gt; '.t('Board settings'),
)));
}