From: rkingdon Date: Thu, 16 Sep 2004 17:33:59 +0000 (+0000) Subject: Added second argument ($cm) to groupmode() calls in X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=dfeaa008d3156419b2900c92bd6e41ba98e77b46;p=moodle.git Added second argument ($cm) to groupmode() calls in _get_available_students function. --- 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; }