diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-09-21 07:59:18 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-09-21 07:59:18 +0000 |
commit | 1eea0b5496d2e13afc0b66d58add5fac9956cc7b (patch) | |
tree | 0bfd2030cb8bb1cf404dda1fadc82523969665b5 /modules/system/system.admin.inc | |
parent | ef33d44f66202a8d558fbefcb9346ed5752f92c4 (diff) | |
download | brdo-1eea0b5496d2e13afc0b66d58add5fac9956cc7b.tar.gz brdo-1eea0b5496d2e13afc0b66d58add5fac9956cc7b.tar.bz2 |
- Patch #500038 by Shai, sreynen | webchick: changed default for RSS output from 'teaser only' to 'full node'.
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r-- | modules/system/system.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 74dbd47a8..a3a230df9 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1576,7 +1576,7 @@ function system_rss_feeds_settings() { $form['feed_item_length'] = array( '#type' => 'select', '#title' => t('Feed content'), - '#default_value' => 'teaser', + '#default_value' => 'fulltext', '#options' => array('title' => t('Titles only'), 'teaser' => t('Titles plus teaser'), 'fulltext' => t('Full text')), '#description' => t('Global setting for the default display of content items in each feed.') ); |