You are here

function system_form_install_select_locale_form_alter in Open Atrium 6

Set English as default language.

If no language selected, the installation crashes. I guess English should be the default but it isn't in the default install. @todo research, core bug?

File

./openatrium.profile, line 370

Code

function system_form_install_select_locale_form_alter(&$form, $form_state) {
  $form['locale']['en']['#value'] = 'en';
}