From 86c5e69a366ca3a3d8a3367aea33d143d1d02656 Mon Sep 17 00:00:00 2001 From: moodler Date: Fri, 25 Oct 2002 14:46:42 +0000 Subject: [PATCH] Remove "news" and "social" forums from learning forums. --- mod/forum/index.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/mod/forum/index.php b/mod/forum/index.php index b5a4df3412..b1ed1889be 100644 --- a/mod/forum/index.php +++ b/mod/forum/index.php @@ -103,6 +103,13 @@ array_unshift($table->align, "CENTER"); if ($learningforums = get_all_instances_in_course("forum", $course->id)) { + foreach ($learningforums as $key => $forum) { + if ($forum->type == "news" or $forum->type == "social") { + unset($learningforums[$key]); // Remove these + } + } + } + if ($learningforums) { foreach ($learningforums as $forum) { $count = count_records("forum_discussions", "forum", "$forum->id"); -- 2.39.5