Skip to content

Commit

Permalink
Fix wrong name mapping for supported database types - remove pdo_ pre…
Browse files Browse the repository at this point in the history
…fix (#1488723)
  • Loading branch information
alecpl committed Sep 27, 2012
1 parent 7641e4a commit 18df6f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installer/config.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@
$select_dbtype = new html_select(array('name' => '_dbtype', 'id' => "cfgdbtype")); $select_dbtype = new html_select(array('name' => '_dbtype', 'id' => "cfgdbtype"));
foreach ($RCI->supported_dbs as $database => $ext) { foreach ($RCI->supported_dbs as $database => $ext) {
if (extension_loaded($ext)) { if (extension_loaded($ext)) {
$select_dbtype->add($database, $ext); $select_dbtype->add($database, substr($ext, 4));
} }
} }


Expand Down

0 comments on commit 18df6f3

Please sign in to comment.