diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-12-11 16:52:01 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-12-11 16:52:01 +0000 |
commit | 3b8013e20de51ed9c693bfef339aeae7b11205ad (patch) | |
tree | 65126a7bf31942f7079f265e4d7749b87a53371e /modules/system/system.admin.inc | |
parent | ef2c240086e5014db6bdd37c43a75f045bcd5504 (diff) | |
download | brdo-3b8013e20de51ed9c693bfef339aeae7b11205ad.tar.gz brdo-3b8013e20de51ed9c693bfef339aeae7b11205ad.tar.bz2 |
- Patch #523214 by David_Rothstein, Bojhan: UI cleanup of the text on 'Site Information'.
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r-- | modules/system/system.admin.inc | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 0d0d8a9ee..2b3a14276 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1414,6 +1414,12 @@ function system_site_information_settings() { '#default_value' => variable_get('site_name', 'Drupal'), '#required' => TRUE ); + $form['site_slogan'] = array( + '#type' => 'textfield', + '#title' => t('Slogan'), + '#default_value' => variable_get('site_slogan', ''), + '#description' => t("How this is used depends on your site's theme."), + ); $form['site_mail'] = array( '#type' => 'textfield', '#title' => t('E-mail address'), @@ -1421,11 +1427,6 @@ function system_site_information_settings() { '#description' => t("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.)"), '#required' => TRUE, ); - $form['site_slogan'] = array( - '#type' => 'textfield', - '#title' => t('Slogan'), - '#default_value' => variable_get('site_slogan', ''), - ); $form['site_frontpage'] = array( '#type' => 'textfield', '#title' => t('Default front page'), @@ -1439,7 +1440,7 @@ function system_site_information_settings() { '#type' => 'select', '#title' => t('Number of posts on front page'), '#default_value' => variable_get('default_nodes_main', 10), '#options' => drupal_map_assoc(array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, 25, 30)), - '#description' => t('The maximum number of posts displayed on overview pages like the frontpage.') + '#description' => t('The maximum number of posts displayed on overview pages such as the front page.') ); $form['site_403'] = array( '#type' => 'textfield', |