diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-02-23 19:19:16 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-02-23 19:19:16 +0000 |
commit | 4b08146c4582b03405b492dd42b0aef66fe9d749 (patch) | |
tree | acf3494177141286c550560bc14c35ac64057261 | |
parent | e2f2ff4a7f0dc6b388a7ac91f28d4a7a16a91a4e (diff) |
A couple of references to media_rss that were overlooked
-rw-r--r-- | installer/install.sql | 2 | ||||
-rw-r--r-- | modules/polar_rose/helpers/polar_rose_theme.php | 6 |
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. |