diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-03-14 18:42:01 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-03-14 18:42:01 +0000 |
commit | 1071b914093b9a4e1d912a8e9f88b700b8d081f9 (patch) | |
tree | f07e326cce8db6fd2b8c6b62fbd022a44b681346 /modules/rss/helpers | |
parent | e658b9895edb8ce5b0c8c74f32f579c373d37e3b (diff) |
Use relative urls for the feed links.
Diffstat (limited to 'modules/rss/helpers')
-rw-r--r-- | modules/rss/helpers/rss_theme.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/rss/helpers/rss_theme.php b/modules/rss/helpers/rss_theme.php index 84276a8c..634d24bb 100644 --- a/modules/rss/helpers/rss_theme.php +++ b/modules/rss/helpers/rss_theme.php @@ -36,10 +36,10 @@ class rss_theme_Core { $block->title = t("Available RSS Feeds"); $block->content = new View("rss_block.html"); $block->content->feeds = array( - t("New photos or movies") => url::abs_site("rss/updates"), - t("All new comments") => url::abs_site("rss/comments"), + t("New photos or movies") => url::site("rss/updates"), + t("All new comments") => url::site("rss/comments"), sprintf(t("Comments on %s"), - $theme->item()->title) => url::abs_site("rss/comments/{$theme->item()->id}") + $theme->item()->title) => url::site("rss/comments/{$theme->item()->id}") ); return $block; } |