From 364382b1b58db8bf1bd2c8866e21c869a7a5d6d0 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Fri, 13 Feb 2015 17:50:20 -0500 Subject: Add task links (Merge pull-request #610) --- app/Controller/Config.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'app/Controller/Config.php') 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').' > '.t('Board settings'), ))); } -- cgit v1.2.3