Merge branch 'MDL-32630-workshop-calendar_22' of git://github.com/mudrd8mz/moodle into MOODLE_22_STABLE
This commit is contained in:
+12
-8
@@ -1441,8 +1441,9 @@ function workshop_calendar_update(stdClass $workshop, $cmid) {
|
||||
// should not be set but just in case
|
||||
unset($event->id);
|
||||
}
|
||||
// calendar_event::create will reuse a db record if the id field is set
|
||||
calendar_event::create($event);
|
||||
// update() will reuse a db record if the id field is set
|
||||
$eventobj = new calendar_event($event);
|
||||
$eventobj->update($event, false);
|
||||
}
|
||||
|
||||
if ($workshop->submissionend) {
|
||||
@@ -1455,8 +1456,9 @@ function workshop_calendar_update(stdClass $workshop, $cmid) {
|
||||
// should not be set but just in case
|
||||
unset($event->id);
|
||||
}
|
||||
// calendar_event::create will reuse a db record if the id field is set
|
||||
calendar_event::create($event);
|
||||
// update() will reuse a db record if the id field is set
|
||||
$eventobj = new calendar_event($event);
|
||||
$eventobj->update($event, false);
|
||||
}
|
||||
|
||||
if ($workshop->assessmentstart) {
|
||||
@@ -1469,8 +1471,9 @@ function workshop_calendar_update(stdClass $workshop, $cmid) {
|
||||
// should not be set but just in case
|
||||
unset($event->id);
|
||||
}
|
||||
// calendar_event::create will reuse a db record if the id field is set
|
||||
calendar_event::create($event);
|
||||
// update() will reuse a db record if the id field is set
|
||||
$eventobj = new calendar_event($event);
|
||||
$eventobj->update($event, false);
|
||||
}
|
||||
|
||||
if ($workshop->assessmentend) {
|
||||
@@ -1483,8 +1486,9 @@ function workshop_calendar_update(stdClass $workshop, $cmid) {
|
||||
// should not be set but just in case
|
||||
unset($event->id);
|
||||
}
|
||||
// calendar_event::create will reuse a db record if the id field is set
|
||||
calendar_event::create($event);
|
||||
// update() will reuse a db record if the id field is set
|
||||
$eventobj = new calendar_event($event);
|
||||
$eventobj->update($event, false);
|
||||
}
|
||||
|
||||
// delete any leftover events
|
||||
|
||||
Reference in New Issue
Block a user