From 3257ebf6606c4ab7c56acb012be95075eb67fbda Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Tue, 13 Oct 2009 18:45:04 +0000
Subject: [PATCH] - Patch #603436 by chx: small clean-up in export profile.

---
 profiles/expert/expert.profile | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/profiles/expert/expert.profile b/profiles/expert/expert.profile
index 91188f00c26d..45573d8dab0c 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'];
 }
-- 
GitLab