MDL-37467 Do not provide blog posts via RSS when blogging is disabled

This commit is contained in:
David Mudrák
2013-01-10 16:57:10 +01:00
parent d63a406b02
commit a4611b9d02
+5
View File
@@ -158,6 +158,11 @@ function blog_rss_get_params($filters) {
function blog_rss_get_feed($context, $args) {
global $CFG, $SITE, $DB;
if (empty($CFG->enableblogs)) {
debugging('Blogging disabled on this site, RSS feeds are not available');
return null;
}
if (empty($CFG->enablerssfeeds)) {
debugging('Sorry, RSS feeds are disabled on this site');
return '';