diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-09-10 21:33:04 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-09-10 21:33:04 -0700 |
commit | 882a6d9a5dbf04ac26e046713f47068cd1361b74 (patch) | |
tree | a932fc6629873330ff2251dd9d48ab2973e10f3c /modules/notification | |
parent | 7fddd2aced1821f977323fc75f2954f2b240ae37 (diff) |
Convert a couple of instances of Item_Model::url(array(), true) to Item_Model::abs_url()
Diffstat (limited to 'modules/notification')
-rw-r--r-- | modules/notification/views/item_added.html.php | 4 | ||||
-rw-r--r-- | modules/notification/views/item_updated.html.php | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/notification/views/item_added.html.php b/modules/notification/views/item_added.html.php index f697fea6..1ea3720d 100644 --- a/modules/notification/views/item_added.html.php +++ b/modules/notification/views/item_added.html.php @@ -13,8 +13,8 @@ <tr> <td><?= t("Url:") ?></td> <td> - <a href="<?= $item->url(array(), true) ?>"> - <?= $item->url(array(), true) ?> + <a href="<?= $item->abs_url() ?>"> + <?= $item->abs_url() ?> </a> </td> </tr> diff --git a/modules/notification/views/item_updated.html.php b/modules/notification/views/item_updated.html.php index ba03540a..9c200964 100644 --- a/modules/notification/views/item_updated.html.php +++ b/modules/notification/views/item_updated.html.php @@ -17,7 +17,7 @@ </tr> <tr> <td><?= t("Url:") ?></td> - <td><a href="<?= $item->url(array(), true) ?>"><?= $item->url(array(), true) ?></a></td> + <td><a href="<?= $item->abs_url() ?>"><?= $item->abs_url() ?></a></td> </tr> <? if ($item->original("description") != $item->description): ?> <tr> |