-
Bug
-
Resolution: Fixed
-
Minor
-
None
-
2.3
-
None
-
MOODLE_23_STABLE
-
MDL-32728-master-1 -
- Enable weeks format for the course
- Make sure that alt text on section show/hide reads "Show week" and "Hide week" respectively.
Looking at the 'https://github.com/danpoltawski/moodle/tree/MDL-31052-js-rewrite' branch for MDL-31052 (also integrated into 'https://github.com/moodle/moodle/blob/master/course/format/weeks/format.php'), there is a coding fault in '/course/format/weeks/format.php' where
$strweekhide = get_string('hidefromothers', 'format_topics');
|
$strweekshow = get_string('showfromothers', 'format_topics');
|
should be
$strweekhide = get_string('hidefromothers', 'format_weeks');
|
$strweekshow = get_string('showfromothers', 'format_weeks');
|
Lines 50 & 51.
- Testing discovered
-
MDL-31052 update Course AJAX/javascript to YUI3 and replace section_classes.js
-
- Closed
-