From f6f789936ddd1c5a9e5aec48c8747bd709a99cd6 Mon Sep 17 00:00:00 2001 From: skodak Date: Tue, 23 May 2006 10:25:39 +0000 Subject: [PATCH] fixed RSS feeds warning bug #5591; merged from MOODLE_16_STABLE --- mod/forum/lib.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mod/forum/lib.php b/mod/forum/lib.php index 2146cf7f37..140390dac0 100644 --- a/mod/forum/lib.php +++ b/mod/forum/lib.php @@ -81,6 +81,9 @@ if (!isset($CFG->forum_enabletimedposts)) { // Newish feature that is not quit $CFG->forum_enabletimedposts = false; } +if (!isset($CFG->forum_enablerssfeeds)) { // Disable forum RSS feeds by default + $CFG->forum_enablerssfeeds = false; +} /// STANDARD FUNCTIONS /////////////////////////////////////////////////////////// -- 2.39.5