-
Bug
-
Resolution: Fixed
-
Minor
-
2.4.6, 2.5.2, 2.6
-
MOODLE_24_STABLE, MOODLE_25_STABLE, MOODLE_26_STABLE
-
MOODLE_24_STABLE, MOODLE_25_STABLE
-
wip-mdl-42795
-
Easy
-
- Install grid course format
- make sure you don't see any courseid field sql error.
The get_format_options function of the course format library refers to the column 'courseid'. However this column does not exist in the table course_sections. It should be 'course'.
course/format/lib.php line 575 |
--array('section' => $section, 'courseid' => $this->courseid), 'id')))
|
++array('section' => $section, 'course' => $this->courseid), 'id')))
|
Additional course formats like grid and masonry depend heavily on this function.