Skip to content

Commit e690681

Browse files
committed
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 :-)
1 parent f406ea8 commit e690681

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/db/upgrade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -994,14 +994,14 @@ function xmldb_main_upgrade($oldversion) {
994994
upgrade_main_savepoint(true, 2024020200.01);
995995
}
996996

997-
if ($oldversion < 2024020200.02) {
997+
if ($oldversion < 2024021500.01) {
998998
// Change default course formats order for sites never changed the default order.
999999
if (!get_config('core', 'format_plugins_sortorder')) {
10001000
set_config('format_plugins_sortorder', 'topics,weeks,singleactivity,social');
10011001
}
10021002

10031003
// Main savepoint reached.
1004-
upgrade_main_savepoint(true, 2024020200.02);
1004+
upgrade_main_savepoint(true, 2024021500.01);
10051005
}
10061006

10071007
return true;

version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
defined('MOODLE_INTERNAL') || die();
3131

32-
$version = 2024021500.00; // YYYYMMDD = weekly release date of this DEV branch.
32+
$version = 2024021500.01; // YYYYMMDD = weekly release date of this DEV branch.
3333
// RR = release increments - 00 in DEV branches.
3434
// .XX = incremental changes.
3535
$release = '4.4dev (Build: 20240215)'; // Human-friendly version name

0 commit comments

Comments
 (0)