From 29b5b774ebfef2110012ca28cf1c17508e401fe1 Mon Sep 17 00:00:00 2001 From: fusionate Date: Mon, 20 Feb 2023 18:43:51 +0000 Subject: [PATCH] Upgrade: Detect alternate successful response. --- core/upgrade/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/upgrade/index.php b/core/upgrade/index.php index 57eb01b2ad..55f1672ba5 100644 --- a/core/upgrade/index.php +++ b/core/upgrade/index.php @@ -69,7 +69,7 @@ if (sizeof($response_source_update) > 0) { $_SESSION["response"]["upgrade_source"] = $response_source_update; foreach ($response_source_update as $response_line) { - if (substr_count($response_line, "Updating ") > 0 || substr_count($response_line, "Already up-to-date.") > 0) { + if (substr_count($response_line, "Updating ") > 0 || substr_count($response_line, "Already up-to-date.") > 0 || substr_count($response_line, "Already up to date.") > 0) { $update_failed = false; }