-
Bug
-
Resolution: Fixed
-
Minor
-
2.9
-
None
-
MOODLE_29_STABLE
-
MOODLE_28_STABLE
This happens on instance update where timeavailable or timedue are already set. The particular call to calendar_event on line 48 mod/dataform/classes/helper/calendar_event is not properly namespaced.
It's a missing backslash at
mod/dataform/classes/helper/calendar_event.php on line 48. Should be:
$calendarevent = \calendar_event::load($event->id);
|