|
<?php
|
|
// $Id$
|
|
|
|
/**
|
|
* Implements hook_form_alter().
|
|
*
|
|
* Allows the profile to alter the site configuration form.
|
|
*/
|
|
function minimal_form_install_configure_form_alter(&$form, $form_state) {
|
|
$form['site_information']['site_name']['#default_value'] = $_SERVER['SERVER_NAME'];
|
|
}
|