From: Alexander Ebert Date: Mon, 19 Feb 2018 11:53:24 +0000 (+0100) Subject: Disabled check for mysqlnd X-Git-Tag: 3.1.0~19 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=109e9d15bf0c5de3007c9c5fa3949feae83f28fb;p=GitHub%2FWoltLab%2FWCF.git Disabled check for mysqlnd See #2534 --- 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);