diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-06-08 10:09:03 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-06-08 10:09:03 +0000 |
commit | 7d9fc047f94102fe83962801c3547b1e25ba9961 (patch) | |
tree | 027c909be61a6599d48e77e1fd17c835b8b5fc52 /modules/system/system.module | |
parent | 19736b42255e69a1f2ce4933da7e6eaf9b25c968 (diff) | |
download | brdo-7d9fc047f94102fe83962801c3547b1e25ba9961.tar.gz brdo-7d9fc047f94102fe83962801c3547b1e25ba9961.tar.bz2 |
- Clarified the help texts a bit.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index e7aa27280..a557896ea 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -48,7 +48,7 @@ function system_view_options() { $output .= form_textfield("Name", "site_name", variable_get("site_name", "drupal"), 55, 55, "The name of this website."); $output .= form_textfield("E-mail address", "site_mail", variable_get("site_mail", ini_get("sendmail_from")), 55, 128, "A valid e-mail address for this website, used by the auto-mailer during registration, new password requests, notifications, etc."); $output .= form_textfield("Slogan", "site_slogan", variable_get("site_slogan", ""), 55, 128, "The slogan of this website. Some themes display a slogan when available."); - $output .= form_textarea("Mission", "site_mission", variable_get("site_mission", ""), 55, 5, "Your site's mission statement or focus. When enabled, this mission is listed at Drupal.org"); + $output .= form_textarea("Mission", "site_mission", variable_get("site_mission", ""), 55, 5, "Your site's mission statement or focus."); $output .= form_textarea("Footer message", "site_footer", variable_get("site_footer", ""), 55, 5, "This text will be displayed at the bottom of each page. Useful for adding a copyright notice to your pages."); $output .= form_textfield("Anonymous user", "anonymous", variable_get("anonymous", "Anonymous"), 55, 55, "The name used to indicate anonymous users."); foreach (module_list() as $name) { if (module_hook($name, "page")) $pages[$name] = $name; } |