Index: install.php =================================================================== RCS file: /cvs/drupal/drupal/install.php,v retrieving revision 1.169 diff -u -p -r1.169 install.php --- install.php 21 May 2009 21:12:22 -0000 1.169 +++ install.php 24 May 2009 14:32:46 -0000 @@ -1010,10 +1010,6 @@ function install_task_list($active = NUL function install_configure_form(&$form_state, $url) { include_once DRUPAL_ROOT . '/includes/locale.inc'; - $form['intro'] = array( - '#markup' => st('To configure your website, please provide the following information.'), - '#weight' => -10, - ); $form['site_information'] = array( '#type' => 'fieldset', '#title' => st('Site information'), @@ -1029,7 +1025,7 @@ function install_configure_form(&$form_s '#type' => 'textfield', '#title' => st('Site e-mail address'), '#default_value' => ini_get('sendmail_from'), - '#description' => st("The From address in automated e-mails sent during registration and new password requests, and other notifications. (Use an address ending in your site's domain to help prevent this e-mail being flagged as spam.)"), + '#description' => st("From this address automated e-mails such as registration information will be sent. Use an address ending in your site's domain to help prevent this e-mail being flagged as spam."), '#required' => TRUE, '#weight' => -15, ); @@ -1040,7 +1036,7 @@ function install_configure_form(&$form_s ); $form['admin_account']['account']['#tree'] = TRUE; $form['admin_account']['markup'] = array( - '#markup' => '

' . st('The administrator account has complete access to the site; it will automatically be granted all permissions and can perform any administrative activity. This will be the only account that can perform certain activities, so keep its credentials safe.') . '

', + '#markup' => '

' . st('The administrator account can perform any administrative activity.') . '

', '#weight' => -10, ); @@ -1056,7 +1052,6 @@ function install_configure_form(&$form_s $form['admin_account']['account']['mail'] = array('#type' => 'textfield', '#title' => st('E-mail address'), '#maxlength' => EMAIL_MAX_LENGTH, - '#description' => st('All e-mails from the system will be sent to this address. The e-mail address is not made public and will only be used if you wish to receive a new password or wish to receive certain news or notifications by e-mail.'), '#required' => TRUE, '#weight' => -5, );