diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-09-11 04:19:15 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-09-11 04:19:15 +0000 |
commit | a18f95a87da67dc57e7972eb1336e5da76960736 (patch) | |
tree | 692ea686b5eb6e97eddd54767b9309575ed6718e | |
parent | d41435295a6f6789efccc3e4cb96e7c0817cd04e (diff) | |
download | brdo-a18f95a87da67dc57e7972eb1336e5da76960736.tar.gz brdo-a18f95a87da67dc57e7972eb1336e5da76960736.tar.bz2 |
#896170 by yched: Fixed default formatter for 'Text with summary' field type should be 'text_default()'.
-rw-r--r-- | modules/field/modules/text/text.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/field/modules/text/text.module b/modules/field/modules/text/text.module index 45ace5ee2..1399bcdbd 100644 --- a/modules/field/modules/text/text.module +++ b/modules/field/modules/text/text.module @@ -52,7 +52,7 @@ function text_field_info() { 'description' => t('This field stores long text in the database along with optional summary text.'), 'instance_settings' => array('text_processing' => 1, 'display_summary' => 0), 'default_widget' => 'text_textarea_with_summary', - 'default_formatter' => 'text_summary_or_trimmed', + 'default_formatter' => 'text_default', ), ); } |