summaryrefslogtreecommitdiff
path: root/app/Template/board/show.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Template/board/show.php')
-rw-r--r--app/Template/board/show.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Template/board/show.php b/app/Template/board/show.php
index 7df19bc1..5fbb576c 100644
--- a/app/Template/board/show.php
+++ b/app/Template/board/show.php
@@ -5,8 +5,8 @@
<table id="board"
data-project-id="<?= $project['id'] ?>"
data-check-interval="<?= $board_private_refresh_interval ?>"
- data-save-url="<?= Helper\u('board', 'save', array('project_id' => $project['id'])) ?>"
- data-check-url="<?= Helper\u('board', 'check', array('project_id' => $project['id'], 'timestamp' => time())) ?>"
+ data-save-url="<?= $this->u('board', 'save', array('project_id' => $project['id'])) ?>"
+ data-check-url="<?= $this->u('board', 'check', array('project_id' => $project['id'], 'timestamp' => time())) ?>"
>
<?php endif ?>
@@ -15,7 +15,7 @@
<p class="alert alert-error"><?= t('There is no column in your project!') ?></p>
<?php break ?>
<?php else: ?>
- <?= Helper\template('board/swimlane', array(
+ <?= $this->render('board/swimlane', array(
'project' => $project,
'swimlane' => $swimlane,
'board_highlight_period' => $board_highlight_period,