diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-06-15 02:20:08 +0800 |
---|---|---|
committer | <unostar@danalan.info> | 2009-06-15 04:26:00 +0800 |
commit | 879e81f0a1fc4477a8e563d45348330706b6da8a (patch) | |
tree | 228c0fa8a40977cd8656de84c5678659786b1a9a /modules/rss/helpers/rss_theme.php | |
parent | 10d9c6a92ac0002b4838d6a4056fe9cce5b934ba (diff) |
Rename:
rss::get_feeds() -> rss::available_feeds()
rss::process_feed() -> rss::feed_data()
Signed-off-by: <unostar@danalan.info>
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; } |