From 3c9353514d71e3b2f18564549bf28b2f558eb673 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 9 Mar 2016 06:58:46 +0000 Subject: [PATCH] check of (newer) "mysqli" extension not old "mysql" no longer existing in PHP 7.0+ --- setup/check_install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/check_install.php b/setup/check_install.php index 95163b3942..bf104f24cf 100644 --- a/setup/check_install.php +++ b/setup/check_install.php @@ -141,7 +141,7 @@ $checks = array( 'func' => 'extension_check', 'error' => lang('The PDO extension plus a database specific driver is needed by the VFS (virtual file system)!'), ), - 'mysql' => array( + 'mysqli' => array( 'func' => 'extension_check', 'warning' => lang('The %1 extension is needed, if you plan to use a %2 database.','mysql','MySQL') ),