MDL-42557 Events: Removed timemodified hack from course_deleted event

This commit is contained in:
Rajesh Taneja
2013-10-28 13:01:14 +08:00
parent 68291f2d57
commit 726a3be81a
2 changed files with 1 additions and 5 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ class course_deleted extends base {
protected function get_legacy_eventdata() {
$course = $this->get_record_snapshot('course', $this->objectid);
$course->context = $this->context;
$course->timemodified = $this->data['timecreated'];
return $course;
}
-4
View File
@@ -4842,10 +4842,6 @@ function delete_course($courseorid, $showfeedback = true) {
// Delete the course and related context instance.
context_helper::delete_instance(CONTEXT_COURSE, $courseid);
// We will update the course's timemodified, as it will be passed to the course_deleted event,
// which should know about this updated property, as this event is meant to pass the full course record.
$course->timemodified = time();
$DB->delete_records("course", array("id" => $courseid));
$DB->delete_records("course_format_options", array("courseid" => $courseid));