summaryrefslogtreecommitdiff
path: root/modules/rss/helpers/rss_theme.php
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-06-14 11:20:08 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-06-14 11:20:08 -0700
commitb32670f0300b24ad8366d154c3b9a6853f9c710f (patch)
tree9440c0ed10b097f06c7b8f9cdcabc5bad12da58a /modules/rss/helpers/rss_theme.php
parente581440c3d17d3e316b890e2fec393d47006c862 (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.php2
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;
}