diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-03-05 09:11:00 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-03-05 09:11:00 +0000 |
commit | dcf985de2171c55458b92ac9b2c4f3304a60a9a6 (patch) | |
tree | d42e75f4687b49c440f0b5f413e29d7c711fda01 /modules/system/system.module | |
parent | 11dd94bde5e9417e81b8ce4dd4fc2d8710dbdd82 (diff) | |
download | brdo-dcf985de2171c55458b92ac9b2c4f3304a60a9a6.tar.gz brdo-dcf985de2171c55458b92ac9b2c4f3304a60a9a6.tar.bz2 |
- Patch #18404 by Gerhard: removed incorrect/outdated documentation from a form description.
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 969a1ecba..5f38a895c 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -658,7 +658,7 @@ function system_theme_settings() { // System wide only settings. if (!$key) { // Menu settings - $group = form_textarea(t('Primary links'), "$var][primary_links", $settings['primary_links'], 70, 8, t('The HTML code for the primary links. If this field is empty, Drupal will automatically generate a set of links based on which modules are enabled.')); + $group = form_textarea(t('Primary links'), "$var][primary_links", $settings['primary_links'], 70, 8, t('The HTML code for the primary links.')); $group .= form_textarea(t('Secondary links'), "$var][secondary_links", $settings['secondary_links'], 70, 8, t('The HTML code for the secondary links.')); $form .= form_group(t('Menu Settings'), $group, t('Customize the menus that are displayed at the top and/or bottom of the page. This configuration screen is only available in the site wide display configuration.')); |