diff options
-rw-r--r-- | profiles/expert/expert.profile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/profiles/expert/expert.profile b/profiles/expert/expert.profile index 91188f00c..45573d8da 100644 --- a/profiles/expert/expert.profile +++ b/profiles/expert/expert.profile @@ -7,9 +7,6 @@ * Allows the profile to alter the site-configuration form. This is * called through custom invocation, so $form_state is not populated. */ -function expert_form_alter(&$form, $form_state, $form_id) { - if ($form_id == 'install_configure') { - // Set default for site name field. - $form['site_information']['site_name']['#default_value'] = $_SERVER['SERVER_NAME']; - } +function expert_form_install_configure_form_alter(&$form) { + $form['site_information']['site_name']['#default_value'] = $_SERVER['SERVER_NAME']; } |