-
Bug
-
Resolution: Fixed
-
Minor
-
4.1.9, 4.3.5
The error message for when the maximum number of sections is reached reads:
Cannot create new section as it would exceed the maximum number of sections allowed for this course ({$a}).
The {$a} should instead be the maximum number of allowed sections.
It looks like in /course/format/classes/stateactions.php function section_add() the line:
throw new moodle_exception('maxsectionslimit', 'moodle', $maxsections);
should be:
throw new moodle_exception('maxsectionslimit', 'moodle', '', $maxsections);
- has been marked as being related by
-
MDL-71779 Make 'Add a new topic/week' option client side on Topics and Weekly formats
-
- Closed
-