summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-09-11 04:19:15 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-09-11 04:19:15 +0000
commita18f95a87da67dc57e7972eb1336e5da76960736 (patch)
tree692ea686b5eb6e97eddd54767b9309575ed6718e /modules
parentd41435295a6f6789efccc3e4cb96e7c0817cd04e (diff)
downloadbrdo-a18f95a87da67dc57e7972eb1336e5da76960736.tar.gz
brdo-a18f95a87da67dc57e7972eb1336e5da76960736.tar.bz2
#896170 by yched: Fixed default formatter for 'Text with summary' field type should be 'text_default()'.
Diffstat (limited to 'modules')
-rw-r--r--modules/field/modules/text/text.module2
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',
),
);
}