Browse Source

Fix #290 correct $where statement.

MOODLE_34_STABLE
Dan Marsden 7 years ago
parent
commit
322cd6bb68
  1. 2
      locallib.php

2
locallib.php

@ -735,7 +735,7 @@ function attendance_get_users_to_notify($courseids = array(), $orderby = '', $al
global $DB; global $DB;
$joingroup = 'LEFT JOIN {groups_members} gm ON (gm.userid = atl.studentid AND gm.groupid = ats.groupid)'; $joingroup = 'LEFT JOIN {groups_members} gm ON (gm.userid = atl.studentid AND gm.groupid = ats.groupid)';
$where = ' AND (ats.groupid = 0 or gm.id is NOT NULL)'; $where = ' (ats.groupid = 0 or gm.id is NOT NULL)';
$having = ''; $having = '';
$params = array(); $params = array();

Loading…
Cancel
Save