diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-01-06 22:24:35 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-01-06 22:24:35 -0500 |
commit | cda7c0f997220e7c433df355e5653353a40663bf (patch) | |
tree | 13690522f38853d8b253d88729759c96e7ce5983 /app/Template/event/subtask_update.php | |
parent | c5efccd585ee01cc4d63bd89e903e57e3d22d81a (diff) |
Change links in event templates
Diffstat (limited to 'app/Template/event/subtask_update.php')
-rw-r--r-- | app/Template/event/subtask_update.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/Template/event/subtask_update.php b/app/Template/event/subtask_update.php index 0adc8ff5..be06f7f5 100644 --- a/app/Template/event/subtask_update.php +++ b/app/Template/event/subtask_update.php @@ -1,5 +1,8 @@ <p class="activity-title"> - <?= e('%s updated a subtask for the task <a href="?controller=task&action=show&task_id=%d">#%d</a>', $this->e($author), $task_id, $task_id) ?> + <?= e('%s updated a subtask for the task %s', + $this->e($author), + $this->a(t('#%d', $task['id']), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) + ) ?> </p> <div class="activity-description"> <p><em><?= $this->e($task['title']) ?></em></p> |