Skip to content

Commit

Permalink
MDL-81124 install: Enable is_major_upgrade_required for 4.4dev
Browse files Browse the repository at this point in the history
Setting it to 2024010400.00 that is the week when MDL-80186 landed.
  • Loading branch information
stronk7 committed Mar 8, 2024
1 parent 38a3310 commit 78b5db3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/setuplib.php
Original file line number Diff line number Diff line change
Expand Up @@ -1492,7 +1492,7 @@ function disable_output_buffering() {
*/
function is_major_upgrade_required() {
global $CFG;
$lastmajordbchanges = 2022101400.03; // This should be the version where the breaking changes happen.
$lastmajordbchanges = 2024010400.00; // This should be the version where the breaking changes happen.

$required = empty($CFG->version);
$required = $required || (float)$CFG->version < $lastmajordbchanges;
Expand Down

0 comments on commit 78b5db3

Please sign in to comment.