diff options
Diffstat (limited to 'app/Template/board/swimlane.php')
-rw-r--r-- | app/Template/board/swimlane.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/board/swimlane.php b/app/Template/board/swimlane.php index c7bd8b5b..a7741f8d 100644 --- a/app/Template/board/swimlane.php +++ b/app/Template/board/swimlane.php @@ -21,14 +21,14 @@ <th class="board-column"> <?php if (! $not_editable): ?> <div class="board-add-icon"> - <?= $this->a('+', 'task', 'create', array('project_id' => $column['project_id'], 'column_id' => $column['id'], 'swimlane_id' => $swimlane['id']), false, 'task-board-popover', t('Add a new task')) ?> + <?= $this->url->link('+', 'task', 'create', array('project_id' => $column['project_id'], 'column_id' => $column['id'], 'swimlane_id' => $swimlane['id']), false, 'task-board-popover', t('Add a new task')) ?> </div> <?php endif ?> <?= $this->e($column['title']) ?> <?php if (! $not_editable && ! empty($column['description'])): ?> - <span class="column-tooltip pull-right" title='<?= $this->e($this->markdown($column['description'])) ?>'> + <span class="column-tooltip pull-right" title='<?= $this->e($this->text->markdown($column['description'])) ?>'> <i class="fa fa-info-circle"></i> </span> <?php endif ?> |