7 lines
311 B
PHP
7 lines
311 B
PHP
<h2><?= Helper\escape($task['title']) ?> (#<?= $task['id'] ?>)</h2>
|
|
|
|
<h3><?= t('New comment posted by %s', $comment['name'] ?: $comment['username']) ?></h3>
|
|
|
|
<?= Helper\markdown($comment['comment']) ?>
|
|
|
|
<?= Helper\template('notification_footer', array('task' => $task, 'application_url' => $application_url)) ?>
|