summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-02-23 19:19:16 +0000
committerTim Almdal <tnalmdal@shaw.ca>2009-02-23 19:19:16 +0000
commit4b08146c4582b03405b492dd42b0aef66fe9d749 (patch)
treeacf3494177141286c550560bc14c35ac64057261 /modules
parente2f2ff4a7f0dc6b388a7ac91f28d4a7a16a91a4e (diff)
A couple of references to media_rss that were overlooked
Diffstat (limited to 'modules')
-rw-r--r--modules/polar_rose/helpers/polar_rose_theme.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/polar_rose/helpers/polar_rose_theme.php b/modules/polar_rose/helpers/polar_rose_theme.php
index ef5ab95b..3a3ce422 100644
--- a/modules/polar_rose/helpers/polar_rose_theme.php
+++ b/modules/polar_rose/helpers/polar_rose_theme.php
@@ -19,11 +19,11 @@
*/
class polar_rose_theme_Core {
static function head($theme) {
- if (module::is_installed("media_rss")) {
+ if (module::is_installed("rss")) {
if ($theme->item()) {
- $url = media_rss::item_feed($theme->item());
+ $url = rss::item_feed($theme->item());
} else if ($theme->tag()) {
- $url = media_rss::tag_feed($theme->tag());
+ $url = rss::tag_feed($theme->tag());
}
// Polar Rose doesn't understand relative URLs. Hack around that until they fix it.