diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-12-28 11:28:50 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-12-28 11:28:50 -0500 |
commit | 34d7450d3c13342715e90ec21bceaa13e1baa876 (patch) | |
tree | a2d8f2f22ad3fe9b56f01fe2db0357f9b963e660 /app/Template/board/index.php | |
parent | 88d84073aecbe8bdc5f10825b6d7ca6b81c5f7b1 (diff) |
Template helpers refactoring
Diffstat (limited to 'app/Template/board/index.php')
-rw-r--r-- | app/Template/board/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/board/index.php b/app/Template/board/index.php index 53c662a0..78537085 100644 --- a/app/Template/board/index.php +++ b/app/Template/board/index.php @@ -1,12 +1,12 @@ <section id="main"> - <?= Helper\template('board/filters', array( + <?= $this->render('board/filters', array( 'categories' => $categories, 'users' => $users, 'project' => $project, )) ?> - <?= Helper\template('board/show', array( + <?= $this->render('board/show', array( 'project' => $project, 'swimlanes' => $swimlanes, 'categories' => $categories, |