From 83d68bd71196435b76b05bac2281f1b22ff53b9e Mon Sep 17 00:00:00 2001 From: catch <6915-catch@users.noreply.drupalcode.org> Date: Wed, 28 Aug 2024 16:15:06 +0900 Subject: [PATCH] Issue #2885413: follow-up to correct the condition that skips the update. --- core/modules/system/system.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/system/system.install b/core/modules/system/system.install index 8acb99ff32f..b7deb9dd4b9 100644 --- a/core/modules/system/system.install +++ b/core/modules/system/system.install @@ -1721,7 +1721,7 @@ function _system_advisories_requirements(array &$requirements): void { */ function system_update_11001(&$sandbox) { // Execute only if allowed setting, 'timestamp_field_update_y2038', is true. - if (Settings::get('timestamp_field_update_y2038', FALSE) === FALSE) { + if (Settings::get('timestamp_field_update_y2038', TRUE) === FALSE) { return t("Update '11001 - Update TimestampItem field schema size to support dates greater than 2038' skipped due to setting of 'timestamp_field_update_y2038' in settings.php"); } $timeout = Settings::get('timestamp_field_update_y2038_timeout', 0);