From 567f789dab4b16b89e46535aaf7157894b80d799 Mon Sep 17 00:00:00 2001 From: "Michael Kaufmann (d00p)" Date: Tue, 26 Nov 2013 10:16:19 +0100 Subject: [PATCH] at this stage in the updater, it's too late to inform about pdo Signed-off-by: Michael Kaufmann (d00p) --- install/updates/preconfig/0.9/preconfig_0.9.inc.php | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/install/updates/preconfig/0.9/preconfig_0.9.inc.php b/install/updates/preconfig/0.9/preconfig_0.9.inc.php index bac67cba..8240a872 100644 --- a/install/updates/preconfig/0.9/preconfig_0.9.inc.php +++ b/install/updates/preconfig/0.9/preconfig_0.9.inc.php @@ -584,16 +584,4 @@ function parseAndOutputPreconfig(&$has_preconfig, &$return, $current_version) eval("\$return.=\"" . getTemplate("update/preconfigitem") . "\";"); } } - - if (versionInUpdate($current_version, '0.9.31-dev3')) { - if (!extension_loaded('pdo') - || in_array("mysql", PDO::getAvailableDrivers()) == false - ) { - $has_preconfig = true; - $description = 'Froxlor now uses PHP PDO as database backend. Please be sure that you have the php-pdo extension with mysql-driver installed.

'; - $description .= 'Check your distributions manuals on how to install php-pdo.'; - $question = ''; - eval("\$return.=\"" . getTemplate("update/preconfigitem") . "\";"); - } - } }