Disabled check for mysqlnd
authorAlexander Ebert <ebert@woltlab.com>
Mon, 19 Feb 2018 11:53:24 +0000 (12:53 +0100)
committerAlexander Ebert <ebert@woltlab.com>
Mon, 19 Feb 2018 11:53:24 +0000 (12:53 +0100)
See #2534

wcfsetup/install/files/lib/system/WCFSetup.class.php

index 3ad3547175bfee875478b3a34d8e61336d1d5715..42ceee290c642d9f8c752e95ca8e6705cfb48758 100644 (file)
@@ -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);