mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
MDL-34936 Warn if the sectioncache property is missing in a get_fast_modinfo call
This commit is contained in:
parent
d71c486507
commit
fd0680ff4a
1 changed files with 4 additions and 0 deletions
|
@ -1204,6 +1204,10 @@ function get_fast_modinfo(&$course, $userid=0) {
|
|||
debugging('Coding problem - missing course modinfo property in get_fast_modinfo() call');
|
||||
}
|
||||
|
||||
if (!property_exists($course, 'sectioncache')) {
|
||||
debugging('Coding problem - missing course sectioncache property in get_fast_modinfo() call');
|
||||
}
|
||||
|
||||
unset($cache[$course->id]); // prevent potential reference problems when switching users
|
||||
|
||||
$cache[$course->id] = new course_modinfo($course, $userid);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue