diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-02-24 21:12:19 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-02-24 21:12:19 -0500 |
commit | 4fc518b2c9721f366b998021fe60a31a15430f0e (patch) | |
tree | eb10517af8129b6b6ef49118b1b4e7dbc015e40c /app/Controller/Board.php | |
parent | 0fd8241f4609be789cd82046648e4d8c9188aaec (diff) | |
parent | dedf425e8168b2c38e8566a3d407f77fb11cc001 (diff) |
Merge pull-request #657
Diffstat (limited to 'app/Controller/Board.php')
-rw-r--r-- | app/Controller/Board.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Controller/Board.php b/app/Controller/Board.php index 90b7f357..a6e002f2 100644 --- a/app/Controller/Board.php +++ b/app/Controller/Board.php @@ -127,6 +127,7 @@ class Board extends Base 'swimlanes' => $this->board->getBoard($project['id']), 'categories' => $this->category->getList($project['id'], false), 'title' => $project['name'], + 'description' => $project['description'], 'no_layout' => true, 'not_editable' => true, 'board_public_refresh_interval' => $this->config->get('board_public_refresh_interval'), @@ -187,6 +188,7 @@ class Board extends Base 'swimlanes' => $this->board->getBoard($project['id']), 'categories' => $this->category->getList($project['id'], true, true), 'title' => $project['name'], + 'description' => $project['description'], 'board_selector' => $board_selector, 'board_private_refresh_interval' => $this->config->get('board_private_refresh_interval'), 'board_highlight_period' => $this->config->get('board_highlight_period'), |