From 07d30296dc9c117b1bac0cfaa5cf34962b9b4184 Mon Sep 17 00:00:00 2001 From: Cameron Date: Fri, 11 May 2018 17:55:10 -0700 Subject: [PATCH] Issue #2630 Check for PDO MySQL module during install. --- install.php | 1 + 1 file changed, 1 insertion(+) diff --git a/install.php b/install.php index 3002519b5..252cf97b9 100644 --- a/install.php +++ b/install.php @@ -885,6 +885,7 @@ class e_install */ $extensionCheck = array( + 'pdo' => array('label'=> "PDO (MySQL)", 'status' => extension_loaded('pdo_mysql'), 'url'=> ''), 'xml' => array('label'=> LANINS_050, 'status' => function_exists('utf8_encode'), 'url'=> 'http://php.net/manual/en/ref.xml.php'), 'exif' => array('label'=> LANINS_048, 'status' => function_exists('exif_imagetype'), 'url'=> 'http://php.net/manual/en/book.exif.php'), 'curl' => array('label'=> 'Curl Library', 'status' => function_exists('curl_version'), 'url'=> 'http://php.net/manual/en/book.curl.php'),