diff --git a/backup/moodle2/restore_stepslib.php b/backup/moodle2/restore_stepslib.php index 3abea4356a4..3247a82c9a9 100644 --- a/backup/moodle2/restore_stepslib.php +++ b/backup/moodle2/restore_stepslib.php @@ -1160,11 +1160,11 @@ class restore_section_structure_step extends restore_structure_step { $sectionid = $this->get_task()->get_sectionid(); // Get data object for current section availability (if any). - $data = $DB->get_record('course_sections_availability', - array('coursesectionid' => $sectionid), 'id, sourcecmid, gradeitemid', IGNORE_MISSING); + $records = $DB->get_records('course_sections_availability', + array('coursesectionid' => $sectionid), 'id, sourcecmid, gradeitemid'); // If it exists, update mappings. - if ($data) { + foreach ($records as $data) { // Only update mappings for entries which are created by this restore. // Otherwise, when you restore to an existing course, it will mess up // existing section availability entries. diff --git a/lib/conditionlib.php b/lib/conditionlib.php index 550d49a9d3f..c1a08512f4a 100644 --- a/lib/conditionlib.php +++ b/lib/conditionlib.php @@ -760,7 +760,7 @@ abstract class condition_info_base { if (empty($modinfo->cms[$cmid])) { global $PAGE, $UNITTEST; if (!empty($UNITTEST) || (isset($PAGE) && strpos($PAGE->pagetype, 'course-view-')===0)) { - debugging("Warning: activity {$this->cm->id} '{$this->cm->name}' has condition " . + debugging("Warning: activity {$this->item->id} '{$this->item->name}' has condition " . "on deleted activity $cmid (to get rid of this message, edit the named activity)"); } continue;