diff --git a/mod/forum/index.php b/mod/forum/index.php index b5a4df34123..b1ed1889be7 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");