diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-10-08 09:53:46 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-10-08 09:53:46 -0400 |
commit | 5e2e0272ed78e3b729d5673da3e957ce68a30fa2 (patch) | |
tree | f83973ae51d53ab62b1b89afd6559e5056be6457 /app/Template/notification/task_overdue.php | |
parent | e5c449788a4239720b34e15d7441ff996c11231b (diff) |
Send absolute links in email notifications
Diffstat (limited to 'app/Template/notification/task_overdue.php')
-rw-r--r-- | app/Template/notification/task_overdue.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/Template/notification/task_overdue.php b/app/Template/notification/task_overdue.php index 406e41f7..01ad0a01 100644 --- a/app/Template/notification/task_overdue.php +++ b/app/Template/notification/task_overdue.php @@ -13,16 +13,16 @@ <tr style="overflow: hidden; background: #fff; text-align: left; padding-top: .5em; padding-bottom: .5em; padding-left: 3px; padding-right: 3px;"> <td style="border: 1px solid #eee;">#<?= $task['id'] ?></td> <td style="border: 1px solid #eee;"> - <?php if ($application_url): ?> - <a href="<?= $this->url->href('TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, '', true) ?>"><?= $this->text->e($task['title']) ?></a> + <?php if (! empty($application_url)): ?> + <?= $this->url->absoluteLink($this->text->e($task['title']), 'TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?> <?php else: ?> <?= $this->text->e($task['title']) ?> <?php endif ?> </td> <td style="border: 1px solid #eee;"><?= $this->dt->date($task['date_due']) ?></td> - <td style="border: 1px solid #eee;"><?= $task['project_name'] ?></td> + <td style="border: 1px solid #eee;"><?= $this->text->e($task['project_name']) ?></td> <td style="border: 1px solid #eee;"> - <?php if ($task['assignee_username']): ?> + <?php if (! empty($task['assignee_username'])): ?> <?= $this->text->e($task['assignee_name'] ?: $task['assignee_username']) ?> <?php endif ?> </td> |