diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-06-14 11:20:08 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-06-14 11:20:08 -0700 |
commit | b32670f0300b24ad8366d154c3b9a6853f9c710f (patch) | |
tree | 9440c0ed10b097f06c7b8f9cdcabc5bad12da58a /modules/rss/helpers/rss_theme.php | |
parent | e581440c3d17d3e316b890e2fec393d47006c862 (diff) |
Rename:
rss::get_feeds() -> rss::available_feeds()
rss::process_feed() -> rss::feed_data()
Diffstat (limited to 'modules/rss/helpers/rss_theme.php')
-rw-r--r-- | modules/rss/helpers/rss_theme.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/rss/helpers/rss_theme.php b/modules/rss/helpers/rss_theme.php index b82133bd..0f12b475 100644 --- a/modules/rss/helpers/rss_theme.php +++ b/modules/rss/helpers/rss_theme.php @@ -40,7 +40,7 @@ class rss_theme_Core { $block->css_id = "gRss"; $block->title = t("Available RSS Feeds"); $block->content = new View("rss_block.html"); - $block->content->feeds = rss::get_feeds($theme->item()); + $block->content->feeds = rss::available_feeds($theme->item()); return $block; } |