From 18df6f38adb9fb067af104e4cf9484904bf49365 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Thu, 27 Sep 2012 08:26:04 +0200 Subject: Fix wrong name mapping for supported database types - remove pdo_ prefix (#1488723) --- installer/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'installer') diff --git a/installer/config.php b/installer/config.php index 905fb06a3..6897ffbba 100644 --- a/installer/config.php +++ b/installer/config.php @@ -270,7 +270,7 @@ echo $input_syslogfacility->show($RCI->getprop('syslog_facility'), LOG_USER); $select_dbtype = new html_select(array('name' => '_dbtype', 'id' => "cfgdbtype")); foreach ($RCI->supported_dbs as $database => $ext) { if (extension_loaded($ext)) { - $select_dbtype->add($database, $ext); + $select_dbtype->add($database, substr($ext, 4)); } } -- cgit v1.2.3