From cd73f275690f379a08591393238b7fffc2e9c323 Mon Sep 17 00:00:00 2001 From: David Goodwin Date: Thu, 2 Sep 2021 21:45:13 +0100 Subject: [PATCH] remove unnecessary warning if sqlite is available but not the configured db backend - see https://github.com/postfixadmin/postfixadmin/issues/534 --- public/setup.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/public/setup.php b/public/setup.php index c1e7acb8..e6ec334f 100644 --- a/public/setup.php +++ b/public/setup.php @@ -653,9 +653,6 @@ function do_software_environment_check() if ($m_pdo_sqlite == 1) { $info[] = "Database - SQLite support available"; - if (Config::read_string('database_type') != 'sqlite') { - $warn[] = "Change the database_type to 'sqlite' in config.local.php if you want to use SQLite"; - } } else { $warn[] = "Database support - SQLite (pdo_sqlite) extension not found"; }