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() { ...@@ -43,11 +43,11 @@ function feeds_news_field_default_fields() {
'description' => '', 'description' => '',
'display' => array( 'display' => array(
'default' => array( 'default' => array(
'label' => 'above', 'label' => 'hidden',
'module' => 'text', 'module' => 'text',
'settings' => array(), 'settings' => array(),
'type' => 'text_default', 'type' => 'text_default',
'weight' => 0, 'weight' => '0',
), ),
'full' => array( 'full' => array(
'label' => 'above', 'label' => 'above',
...@@ -62,10 +62,13 @@ function feeds_news_field_default_fields() { ...@@ -62,10 +62,13 @@ function feeds_news_field_default_fields() {
'weight' => 0, 'weight' => 0,
), ),
'teaser' => array( 'teaser' => array(
'label' => 'above', 'label' => 'hidden',
'settings' => array(), 'module' => 'text',
'type' => 'hidden', 'settings' => array(
'weight' => 0, 'trim_length' => 600,
),
'type' => 'text_trimmed',
'weight' => '0',
), ),
), ),
'entity_type' => 'node', '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