diff options
Diffstat (limited to 'app/Template/notification/task_due.php')
-rw-r--r-- | app/Template/notification/task_due.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Template/notification/task_due.php b/app/Template/notification/task_due.php index c7ea010f..066ada64 100644 --- a/app/Template/notification/task_due.php +++ b/app/Template/notification/task_due.php @@ -5,9 +5,9 @@ <li> (<strong>#<?= $task['id'] ?></strong>) <?php if ($application_url): ?> - <a href="<?= $application_url.'?controller=task&action=show&task_id='.$task['id'] ?>"><?= Helper\escape($task['title']) ?></a> + <a href="<?= $application_url.'?controller=task&action=show&task_id='.$task['id'] ?>"><?= $this->e($task['title']) ?></a> <?php else: ?> - <?= Helper\escape($task['title']) ?> + <?= $this->e($task['title']) ?> <?php endif ?> (<?= dt('%B %e, %Y', $task['date_due']) ?>) <?php if ($task['assignee_username']): ?> @@ -17,4 +17,4 @@ <?php endforeach ?> </ul> -<?= Helper\template('notification/footer', array('task' => $task)) ?> +<?= $this->render('notification/footer', array('task' => $task)) ?> |