Browse Source

Fix typo when pushing fix #348

MOODLE_36_STABLE
Dan Marsden 6 years ago
parent
commit
cc1407632e
  1. 3
      classes/privacy/provider.php

3
classes/privacy/provider.php

@ -247,7 +247,7 @@ final class provider implements
// Get list of warning_done records and check if this user is set in thirdpartyusers. // Get list of warning_done records and check if this user is set in thirdpartyusers.
foreach ($userids as $userid) { foreach ($userids as $userid) {
$sql = 'SELECT DISTINCT w.* $sql = 'SELECT DISTINCT w.*
FROM {attendance_warning} w FROM {attendance_warning} w
JOIN {attendance_warning_done} d ON d.notifyid = w.id AND d.userid = ?'; JOIN {attendance_warning_done} d ON d.notifyid = w.id AND d.userid = ?';
$warnings = $DB->get_records_sql($sql, array($userid)); $warnings = $DB->get_records_sql($sql, array($userid));
if (!empty($warnings)) { if (!empty($warnings)) {
@ -521,7 +521,6 @@ final class provider implements
* @param string $path The path in the export (relative to the current context). * @param string $path The path in the export (relative to the current context).
* @param array $attendances Array of attendances to export the logs for. * @param array $attendances Array of attendances to export the logs for.
*/ */
*/
private static function export_attendance_logs(string $path, array $attendances) { private static function export_attendance_logs(string $path, array $attendances) {
$attendancesbycontextid = self::group_by_property($attendances, 'contextid'); $attendancesbycontextid = self::group_by_property($attendances, 'contextid');

Loading…
Cancel
Save