summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-05-24 23:21:12 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-05-24 23:21:12 +0000
commitbc331587ea089678527ba7464641e23ad55aba6b (patch)
treefd6eadeb1019a708f7973ed3fcf91870426bf41c /install.php
parentdf6c6465fdf4b9de5fdd7845429f4e086531dbee (diff)
downloadbrdo-bc331587ea089678527ba7464641e23ad55aba6b.tar.gz
brdo-bc331587ea089678527ba7464641e23ad55aba6b.tar.bz2
#471234 by Bojhan: Clean up descriptions on installer configuration forms.
Diffstat (limited to 'install.php')
-rw-r--r--install.php12
1 files changed, 1 insertions, 11 deletions
diff --git a/install.php b/install.php
index 98ddedcbf..e7e80a0b4 100644
--- a/install.php
+++ b/install.php
@@ -1009,10 +1009,6 @@ function install_task_list($active = NULL) {
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'),
@@ -1028,7 +1024,7 @@ function install_configure_form(&$form_state, $url) {
'#type' => 'textfield',
'#title' => st('Site e-mail address'),
'#default_value' => ini_get('sendmail_from'),
- '#description' => st("The <em>From</em> 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("Automated e-mails, such as registration information, will be sent from this address. Use an address ending in your site's domain to help prevent these e-mails from being flagged as spam."),
'#required' => TRUE,
'#weight' => -15,
);
@@ -1037,11 +1033,6 @@ function install_configure_form(&$form_state, $url) {
'#title' => st('Administrator account'),
'#collapsible' => FALSE,
);
- $form['admin_account']['account']['#tree'] = TRUE;
- $form['admin_account']['markup'] = array(
- '#markup' => '<p class="description">' . 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.') . '</p>',
- '#weight' => -10,
- );
$form['admin_account']['account']['name'] = array('#type' => 'textfield',
'#title' => st('Username'),
@@ -1055,7 +1046,6 @@ function install_configure_form(&$form_state, $url) {
$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,
);