diff options
Diffstat (limited to 'modules/polar_rose/helpers/polar_rose_theme.php')
-rw-r--r-- | modules/polar_rose/helpers/polar_rose_theme.php | 6 |
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. |