summaryrefslogtreecommitdiff
path: root/app/Template/swimlane
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-03-04 20:10:34 -0500
committerFrederic Guillot <fred@kanboard.net>2016-03-04 20:10:34 -0500
commit8f3e2b2e5c62a6130f6c8867ab335fb4c1a32c5c (patch)
treece28cdc2dba9c31560ef753ac1b4dc39d567b7a6 /app/Template/swimlane
parentf32507d423c46e8e9612b5239728e6c617e4cbcb (diff)
Helper refactoring
Diffstat (limited to 'app/Template/swimlane')
-rw-r--r--app/Template/swimlane/table.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Template/swimlane/table.php b/app/Template/swimlane/table.php
index 1e6a86bc..17be6924 100644
--- a/app/Template/swimlane/table.php
+++ b/app/Template/swimlane/table.php
@@ -10,7 +10,7 @@
<?php if (! empty($default_swimlane)): ?>
<tr>
<td>
- <?= $this->e($default_swimlane['default_swimlane']) ?>
+ <?= $this->text->e($default_swimlane['default_swimlane']) ?>
<?php if ($default_swimlane['default_swimlane'] !== t('Default swimlane')): ?>
&nbsp;(<?= t('Default swimlane') ?>)
<?php endif ?>
@@ -42,10 +42,10 @@
<i class="fa fa-arrows-alt draggable-row-handle" title="<?= t('Change column position') ?>"></i>
<?php endif ?>
- <?= $this->e($swimlane['name']) ?>
+ <?= $this->text->e($swimlane['name']) ?>
<?php if (! empty($swimlane['description'])): ?>
- <span class="tooltip" title='<?= $this->e($this->text->markdown($swimlane['description'])) ?>'>
+ <span class="tooltip" title='<?= $this->text->e($this->text->markdown($swimlane['description'])) ?>'>
<i class="fa fa-info-circle"></i>
</span>
<?php endif ?>