1
0
mirror of https://github.com/moodle/moodle.git synced 2025-03-14 12:40:01 +01:00

Merge branch 'MDL-72324-master-fix' of https://github.com/junpataleta/moodle

This commit is contained in:
Eloy Lafuente (stronk7) 2022-06-17 08:38:30 +02:00
commit 2231b73953

@ -17,6 +17,10 @@ information provided here is intended especially for developers.
* For plugins that override secondary navigation, the namespace for the custom secondary navigation class has * For plugins that override secondary navigation, the namespace for the custom secondary navigation class has
changed. It was (for example) mod_mymodule\local\views\secondary but is now changed. It was (for example) mod_mymodule\local\views\secondary but is now
mod_mymodule\navigation\views\secondary. The old location will continue to work, but is deprecated. mod_mymodule\navigation\views\secondary. The old location will continue to work, but is deprecated.
* The check for $plugin->incompatible was found to be incorrect. The $plugin->incompatible attribute is meant to define the minimum
Moodle version the plugin is incompatible with but the implemented logic for the check was the opposite. Plugins declaring this
attribute may encounter different behaviours between older Moodle versions (<v3.11.8, <v4.0.2) and the later ones. We recommend
plugin developers to not use this attribute for Moodle versions 4.0 and below in order to avoid this problem.
=== 4.0 === === 4.0 ===