summaryrefslogtreecommitdiff
path: root/app/Template/task/open.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Template/task/open.php')
-rw-r--r--app/Template/task/open.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Template/task/open.php b/app/Template/task/open.php
index 5dec3b0e..438acb34 100644
--- a/app/Template/task/open.php
+++ b/app/Template/task/open.php
@@ -4,12 +4,12 @@
<div class="confirm">
<p class="alert alert-info">
- <?= t('Do you really want to open this task: "%s"?', Helper\escape($task['title'])) ?>
+ <?= t('Do you really want to open this task: "%s"?', $this->e($task['title'])) ?>
</p>
<div class="form-actions">
- <?= Helper\a(t('Yes'), 'task', 'open', array('task_id' => $task['id'], 'confirmation' => 'yes'), true, 'btn btn-red') ?>
+ <?= $this->a(t('Yes'), 'task', 'open', array('task_id' => $task['id'], 'confirmation' => 'yes'), true, 'btn btn-red') ?>
<?= t('or') ?>
- <?= Helper\a(t('cancel'), 'task', 'show', array('task_id' => $task['id'])) ?>
+ <?= $this->a(t('cancel'), 'task', 'show', array('task_id' => $task['id'])) ?>
</div>
</div> \ No newline at end of file