diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-07-14 10:42:11 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-07-14 10:42:11 +0000 |
commit | 3269eb2e08b2958a5b93333d1a94ce56a9e1b0bc (patch) | |
tree | 7fb78a21af985911a309e177e7e174dd49e13479 /modules/node | |
parent | 2ea8bd980144876bc72095720e868d114bf3e1c8 (diff) | |
download | brdo-3269eb2e08b2958a5b93333d1a94ce56a9e1b0bc.tar.gz brdo-3269eb2e08b2958a5b93333d1a94ce56a9e1b0bc.tar.bz2 |
- Patch #504074 by Bojhan, tic2000, royroy, catch, keith.smith et al: improved form description of teaser length setting.
Diffstat (limited to 'modules/node')
-rw-r--r-- | modules/node/content_types.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/content_types.inc b/modules/node/content_types.inc index 441a8b517..b1f5c0686 100644 --- a/modules/node/content_types.inc +++ b/modules/node/content_types.inc @@ -187,7 +187,7 @@ function node_type_form(&$form_state, $type = NULL) { '#title' => t('Length of trimmed posts'), '#default_value' => variable_get('teaser_length_' . $type->type, 600), '#options' => drupal_map_assoc(array(0, 200, 400, 600, 800, 1000, 1200, 1400, 1600, 1800, 2000), '_node_characters'), - '#description' => t("The maximum number of characters used in the trimmed version of a post. Drupal will use this setting to determine at which offset long posts should be trimmed. The trimmed version of a post is typically used as a teaser when displaying the post on the main page, in XML feeds, etc. To disable teasers, set to 'Unlimited'.") + '#description' => t("The maximum number of characters used in the trimmed version of content.") ); $form['old_type'] = array( '#type' => 'value', |