From dfeaa008d3156419b2900c92bd6e41ba98e77b46 Mon Sep 17 00:00:00 2001 From: rkingdon Date: Thu, 16 Sep 2004 17:33:59 +0000 Subject: [PATCH] Added second argument ($cm) to groupmode() calls in _get_available_students function. --- mod/dialogue/locallib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/dialogue/locallib.php b/mod/dialogue/locallib.php index e39dbdc9b8..e5d11623a2 100644 --- a/mod/dialogue/locallib.php +++ b/mod/dialogue/locallib.php @@ -139,7 +139,7 @@ global $USER; $groupid = get_current_group($course->id); // add current group before list of students if it's the teacher - if (isteacher($course->id) and groupmode($course)) { + if (isteacher($course->id) and groupmode($course, $cm)) { // show teacher their current group if ($groupid) { if (!$group = get_record("groups", "id", $groupid)) { @@ -157,7 +157,7 @@ global $USER; // ...exclude self and... if ($USER->id != $otheruser->id) { // ...if teacher and groups then exclude students not in the current group - if (isteacher($course->id) and groupmode($course) and $groupid) { + if (isteacher($course->id) and groupmode($course, $cm) and $groupid) { if (!ismember($groupid, $otheruser->id)) { continue; } -- 2.39.5