diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-09-27 12:21:56 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-09-27 12:21:56 +0200 |
commit | ac68fc494f9919a6537b3c5b3b3b95e4ea6d85aa (patch) | |
tree | f7a58667825eb0885c539e4017cb18ab89b533bc | |
parent | b64233339b36e6781d2097f8318b7dca4b8aed32 (diff) | |
parent | 700dc66c679f0ae6e16c9d016a15bee4269371e6 (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
-rw-r--r-- | installer/config.php | 2 |
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)); } } |