NOBUG: Add upgrade notes

This commit is contained in:
Sara Arjona 2024-05-30 17:00:19 +02:00
parent 4c9e2e4d0d
commit 5d6c6bf81c
No known key found for this signature in database
12 changed files with 145 additions and 33 deletions

13
course/UPGRADING.md Normal file
View file

@ -0,0 +1,13 @@
# core_course (subsystem) Upgrade notes
## 4.5dev
### Changed
- The reset course page has been improved. The words "Delete" and "Remove" have been removed from all the options to make it easier to focus on the data to be removed and avoid inconsistencies and duplicated information. Third party plugins implementing reset methods might need to:
- Add static element in the _reset_course_form_definition method before all the options with the Delete string:
`$mform->addElement('static', 'assigndelete', get_string('delete'));`
- Review all the strings used in the reset page to remove the "Delete" or "Remove" words from them.
For more information see [MDL-81872](https://tracker.moodle.org/browse/MDL-81872)

View file

@ -8,4 +8,3 @@
If `istrackeduser` is pre-computed for the course module's course, it can be provided here to avoid an additional function call.
For more information see [MDL-81610](https://tracker.moodle.org/browse/MDL-81610)