Fix #290 correct $where statement.
authorDan Marsden <dan@danmarsden.com>
Tue, 30 Jan 2018 03:54:02 +0000 (16:54 +1300)
committerDan Marsden <dan@danmarsden.com>
Tue, 30 Jan 2018 03:54:02 +0000 (16:54 +1300)
locallib.php

index 67aa737..811574f 100644 (file)
@@ -735,7 +735,7 @@ function attendance_get_users_to_notify($courseids = array(), $orderby = '', $al
     global $DB;
 
     $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 = '';
     $params = array();