Merge branch 'MDL-39947_23' of https://github.com/aolley/moodle into MOODLE_23_STABLE

This commit is contained in:
Dan Poltawski
2013-06-10 16:20:56 +08:00
+5 -1
View File
@@ -6717,7 +6717,11 @@ function forum_tp_count_forum_unread_posts($cm, $course) {
$modinfo->groups = groups_get_user_groups($course->id, $USER->id);
}
$mygroups = $modinfo->groups[$cm->groupingid];
if (array_key_exists($cm->groupingid, $modinfo->groups)) {
$mygroups = $modinfo->groups[$cm->groupingid];
} else {
$mygroups = false; // Will be set below
}
// add all groups posts
if (empty($mygroups)) {