summaryrefslogtreecommitdiff
path: root/installer/config.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-09-27 08:26:04 +0200
committerAleksander Machniak <alec@alec.pl>2012-09-27 08:26:04 +0200
commit18df6f38adb9fb067af104e4cf9484904bf49365 (patch)
treee7313387ac4ff8472a175123c41cdb32485a16cb /installer/config.php
parent7641e4aaab279e060cf4f4a981869f07f3a02f45 (diff)
Fix wrong name mapping for supported database types - remove pdo_ prefix (#1488723)
Diffstat (limited to 'installer/config.php')
-rw-r--r--installer/config.php2
1 files changed, 1 insertions, 1 deletions
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));
}
}