From b95cd1afd62adcd7bbee4363f3028f7c8d84b8e0 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Tue, 3 Dec 2024 11:02:50 +0100 Subject: [PATCH] fix[installer]: database version check was hard fence. should be soft fence --- install/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/index.php b/install/index.php index 52384055f..ae4b6917f 100644 --- a/install/index.php +++ b/install/index.php @@ -1557,7 +1557,7 @@ if (!file_exists('.lock')) { } else { db_connection_results.addClass('alert-warning'); $('#db_connection_test_button').html(originalButtonText).prop('disabled', false); - db_connection_results.html(" " + "

' . $mysql_version . '', '' . $mariadb_version . ''); ?>"); + db_connection_results.html(" " + "

' . $mysql_version . '', '' . $mariadb_version . ''); ?>"); } resolve(true); } @@ -1857,7 +1857,7 @@ if (!file_exists('.lock')) { if ((checklistPrechecks.hasClass('fa-check-circle') || checklistPrechecks.hasClass('fa-exclamation-triangle')) && checklistConfiguration.hasClass('fa-check-circle') && - checklistDatabase.hasClass('fa-check-circle') && + (checklistDatabase.hasClass('fa-check-circle') || checklistDatabase.hasClass('fa-exclamation-triangle')) && (checklistFirstUser.hasClass('fa-check-circle') || checklistFirstUser.hasClass('fa-exclamation-triangle'))) { install_possible = true; }