diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-05-12 08:31:17 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-05-12 08:31:17 +0000 |
commit | a86223cd7039756510df0f9e0f5ddf38b7e04fcf (patch) | |
tree | bce2ccbe8017aa053c639979cfc4202db9254782 /modules/system/system.admin.inc | |
parent | a81eaade5096f284cc4d011360e9bd79c655690a (diff) | |
download | brdo-a86223cd7039756510df0f9e0f5ddf38b7e04fcf.tar.gz brdo-a86223cd7039756510df0f9e0f5ddf38b7e04fcf.tar.bz2 |
- Patch #428800 by Gabor Hojtsy: convert the mission statement to a block so we have more flexibility to place it.
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r-- | modules/system/system.admin.inc | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 3d4b38f40..bc3dea60a 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -357,7 +357,6 @@ function system_theme_settings(&$form_state, $key = '') { 'logo' => t('Logo'), 'name' => t('Site name'), 'slogan' => t('Site slogan'), - 'mission' => t('Mission statement'), 'node_user_picture' => t('User pictures in posts'), 'comment_user_picture' => t('User pictures in comments'), 'comment_user_verification' => t('User verification status in comments'), @@ -1189,12 +1188,6 @@ function system_site_information_settings() { '#default_value' => '', '#description' => t("Your site's motto, tag line, or catchphrase (often displayed alongside the title of the site).") ); - $form['site_mission'] = array( - '#type' => 'textarea', - '#title' => t('Mission'), - '#default_value' => '', - '#description' => t("Your site's mission or focus statement (often prominently displayed on the front page).") - ); $form['site_footer'] = array( '#type' => 'textarea', '#title' => t('Footer message'), @@ -1467,6 +1460,12 @@ function system_image_toolkit_settings() { */ function system_rss_feeds_settings() { + $form['feed_description'] = array( + '#type' => 'textarea', + '#title' => t('Feed description'), + '#default_value' => '', + '#description' => t('Description of your site, included in each feed.') + ); $form['feed_default_items'] = array( '#type' => 'select', '#title' => t('Number of items in each feed'), |