Skip to content
Snippets Groups Projects
Commit 64560a35 authored by Dave Reid's avatar Dave Reid
Browse files

Issue #1191200: Fixed display of the description field on the feed item content type.

parent 37ac69f8
No related branches found
No related tags found
No related merge requests found
......@@ -43,11 +43,11 @@ function feeds_news_field_default_fields() {
'description' => '',
'display' => array(
'default' => array(
'label' => 'above',
'label' => 'hidden',
'module' => 'text',
'settings' => array(),
'type' => 'text_default',
'weight' => 0,
'weight' => '0',
),
'full' => array(
'label' => 'above',
......@@ -62,10 +62,13 @@ function feeds_news_field_default_fields() {
'weight' => 0,
),
'teaser' => array(
'label' => 'above',
'settings' => array(),
'type' => 'hidden',
'weight' => 0,
'label' => 'hidden',
'module' => 'text',
'settings' => array(
'trim_length' => 600,
),
'type' => 'text_trimmed',
'weight' => '0',
),
),
'entity_type' => 'node',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment