From 109e9d15bf0c5de3007c9c5fa3949feae83f28fb Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Mon, 19 Feb 2018 12:53:24 +0100 Subject: [PATCH] Disabled check for mysqlnd See #2534 --- wcfsetup/install/files/lib/system/WCFSetup.class.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wcfsetup/install/files/lib/system/WCFSetup.class.php b/wcfsetup/install/files/lib/system/WCFSetup.class.php index 3ad3547175..42ceee290c 100644 --- a/wcfsetup/install/files/lib/system/WCFSetup.class.php +++ b/wcfsetup/install/files/lib/system/WCFSetup.class.php @@ -718,6 +718,7 @@ class WCFSetup extends WCF { } // check for PHP's MySQL native driver + /* $sql = "SELECT 1"; $statement = $db->prepareStatement($sql); $statement->execute(); @@ -725,6 +726,7 @@ class WCFSetup extends WCF { if ($statement->fetchSingleColumn() !== 1) { throw new SystemException("MySQLnd is not being used for database communication."); } + */ // check for table conflicts $conflictedTables = $this->getConflictedTables($db, $dbNumber); -- 2.20.1