From ec721fbabb08d339da8de0091e02bfc414369cf9 Mon Sep 17 00:00:00 2001
From: Alex Pott <alex.a.pott@googlemail.com>
Date: Fri, 29 Dec 2023 07:52:24 +0000
Subject: [PATCH] Issue #3410093 by bnjmnm: [regression] install_get_form does
 not allow install_settings_form ['driver'] to be null

---
 core/includes/install.core.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc
index 0cf78ba206ff..15ec5704b38b 100644
--- a/core/includes/install.core.inc
+++ b/core/includes/install.core.inc
@@ -970,7 +970,7 @@ function install_get_form($form_id, array &$install_state) {
     $install_form_id = $form_builder->getFormId($form_id, $form_state);
     if (!empty($install_state['forms'][$install_form_id])) {
       $values = $install_state['forms'][$install_form_id];
-      if ($install_form_id === 'install_settings_form' && !str_contains($values['driver'], "\\")) {
+      if ($install_form_id === 'install_settings_form' && isset($values['driver']) && !str_contains($values['driver'], "\\")) {
         @trigger_error("Passing a database driver name '{$values['driver']}' to " . __FUNCTION__ . '() is deprecated in drupal:10.2.0 and is removed from drupal:11.0.0. Pass a database driver namespace instead. See https://www.drupal.org/node/3258175', E_USER_DEPRECATED);
         $driverExtension = Database::getDriverList()->getFromDriverName($values['driver']);
         $tmp = [];
-- 
GitLab