mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 00:12:56 +02:00
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:
parent
f406ea8b76
commit
be3f74c0a2
@ -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;
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user