Aleksander Machniak
2012-09-27 18df6f38adb9fb067af104e4cf9484904bf49365
Fix wrong name mapping for supported database types - remove pdo_ prefix (#1488723)
1 files modified
2 ■■■ changed files
installer/config.php 2 ●●● patch | view | raw | blame | history
installer/config.php
@@ -270,7 +270,7 @@
$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));
    }
}