MDL-37467 Do not provide blog posts via RSS when blogging is disabled
This commit is contained in:
committed by
Eloy Lafuente (stronk7)
parent
72a504dc2a
commit
fe7e411e7c
@@ -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 '';
|
||||
|
||||
Reference in New Issue
Block a user