summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--installer/install.sql2
-rw-r--r--modules/polar_rose/helpers/polar_rose_theme.php6
2 files changed, 4 insertions, 4 deletions
diff --git a/installer/install.sql b/installer/install.sql
index 349f0354..06f2bede 100644
--- a/installer/install.sql
+++ b/installer/install.sql
@@ -195,7 +195,7 @@ CREATE TABLE `modules` (
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
-INSERT INTO `modules` VALUES (1,'core',1),(2,'user',1),(3,'comment',1),(4,'info',1),(5,'media_rss',1),(6,'search',1),(7,'slideshow',1),(8,'tag',1);
+INSERT INTO `modules` VALUES (1,'core',1),(2,'user',1),(3,'comment',1),(4,'info',1),(5,'rss',1),(6,'search',1),(7,'slideshow',1),(8,'tag',1);
DROP TABLE IF EXISTS `outgoing_translations`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
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.