diff options
Diffstat (limited to 'modules/notification')
-rw-r--r-- | modules/notification/views/comment_published.html.php | 4 | ||||
-rw-r--r-- | modules/notification/views/item_deleted.html.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/notification/views/comment_published.html.php b/modules/notification/views/comment_published.html.php index e39e39c6..a8ca1899 100644 --- a/modules/notification/views/comment_published.html.php +++ b/modules/notification/views/comment_published.html.php @@ -25,8 +25,8 @@ <tr> <td><?= t("Url:") ?></td> <td> - <a href="<?= $comment->item()->url(array(), true) ?>#comments"> - <?= $comment->item()->url(array(), true) ?>#comments + <a href="<?= $comment->item()->abs_url() ?>#comments"> + <?= $comment->item()->abs_url() ?>#comments </a> </td> </tr> diff --git a/modules/notification/views/item_deleted.html.php b/modules/notification/views/item_deleted.html.php index a51782ff..a95cdd89 100644 --- a/modules/notification/views/item_deleted.html.php +++ b/modules/notification/views/item_deleted.html.php @@ -15,8 +15,8 @@ <tr> <td><?= t("Url:") ?></td> <td> - <a href="<?= $item->parent()->url(array(), true) ?>"> - <?= $item->parent()->url(array(), true) ?> + <a href="<?= $item->parent()->abs_url() ?>"> + <?= $item->parent()->abs_url() ?> </a> </td> </tr> |