From 78b5db34a8156237e6628e38a6f5ed610467a8c7 Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Tue, 5 Mar 2024 08:44:53 +0100 Subject: [PATCH] MDL-81124 install: Enable is_major_upgrade_required for 4.4dev Setting it to 2024010400.00 that is the week when MDL-80186 landed. --- lib/setuplib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/setuplib.php b/lib/setuplib.php index af340a89e0c..7eedb3f07e8 100644 --- a/lib/setuplib.php +++ b/lib/setuplib.php @@ -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;