@@ -840,12 +840,7 @@ function install_settings_form($form, &$form_state, &$install_state) {
thrownewException(st('Your web server does not appear to support any common database types. Check with your hosting provider to see if they offer any databases that <a href="@drupal-databases">Drupal supports</a>.',array('@drupal-databases'=>'http://drupal.org/node/270#database')));
}
else{
$form['basic_options']=array(
'#type'=>'fieldset',
'#title'=>st('Basic options'),
);
$form['basic_options']['driver']=array(
$form['driver']=array(
'#type'=>'radios',
'#title'=>st('Database type'),
'#required'=>TRUE,
...
...
@@ -854,12 +849,12 @@ function install_settings_form($form, &$form_state, &$install_state) {
'#description'=>st('The type of database your @drupal data will be stored in.',array('@drupal'=>drupal_install_profile_distribution_name())),
$form['basic_options']['driver']['#description'].=' '.st('Your PHP configuration only supports the %driver database type so it has been automatically selected.',array('%driver'=>current($drivers)));
$form['driver']['#disabled']=TRUE;
$form['driver']['#description'].=' '.st('Your PHP configuration only supports the %driver database type so it has been automatically selected.',array('%driver'=>current($drivers)));