9 lines
230 B
PHP
9 lines
230 B
PHP
<html>
|
|
<body>
|
|
<h2><?= $this->text->e($task['title']) ?> (#<?= $task['id'] ?>)</h2>
|
|
|
|
<p><?= t('The task #%d has been closed.', $task['id']) ?></p>
|
|
|
|
<?= $this->render('notification/footer', array('task' => $task)) ?>
|
|
</body>
|
|
</html>
|