NOBUG: Bump version and missed upgrade step

When MDL-80557 was integrated, the version number in the upgrading
step, 2024020200.02, was previous to the released version, 2024021500.00,
so anybody that has updated to 4.4dev between 0202 and 0215 didn't
get that upgrade step executed.
This commit should fix it :-)
This commit is contained in:
Sara Arjona 2024-02-20 09:32:42 +01:00 committed by Huong Nguyen
parent f406ea8b76
commit be3f74c0a2
No known key found for this signature in database
GPG Key ID: 40D88AB693A3E72A
2 changed files with 3 additions and 3 deletions

View File

@ -994,14 +994,14 @@ function xmldb_main_upgrade($oldversion) {
upgrade_main_savepoint(true, 2024020200.01);
}
if ($oldversion < 2024020200.02) {
if ($oldversion < 2024021500.01) {
// Change default course formats order for sites never changed the default order.
if (!get_config('core', 'format_plugins_sortorder')) {
set_config('format_plugins_sortorder', 'topics,weeks,singleactivity,social');
}
// Main savepoint reached.
upgrade_main_savepoint(true, 2024020200.02);
upgrade_main_savepoint(true, 2024021500.01);
}
return true;

View File

@ -29,7 +29,7 @@
defined('MOODLE_INTERNAL') || die();
$version = 2024021500.00; // YYYYMMDD = weekly release date of this DEV branch.
$version = 2024021500.01; // YYYYMMDD = weekly release date of this DEV branch.
// RR = release increments - 00 in DEV branches.
// .XX = incremental changes.
$release = '4.4dev (Build: 20240215)'; // Human-friendly version name