From 95a10c12259cf4e76d8ee95238fccd7589de7a7a Mon Sep 17 00:00:00 2001 From: Matthias Wirtz Date: Wed, 17 Apr 2013 19:23:52 +0200 Subject: [PATCH] fixed sanity check (mysqli_connect is also allowed now) --- include/sanity_check.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sanity_check.php b/include/sanity_check.php index a5c682be8..b2888b1d7 100644 --- a/include/sanity_check.php +++ b/include/sanity_check.php @@ -118,7 +118,7 @@ array_push($errors, "PHP support for JSON is required, but was not found."); } - if (DB_TYPE == "mysql" && !function_exists("mysql_connect")) { + if (DB_TYPE == "mysql" && !function_exists("mysql_connect") && !function_exists("mysqli_connect")) { array_push($errors, "PHP support for MySQL is required for configured DB_TYPE in config.php."); }