diff --git a/plugins/FeedsNodeProcessor.inc b/plugins/FeedsNodeProcessor.inc index 107652fddc7fa4805b9b8e8037e48343b8491f77..194c18aa239e2923570f5bee775fdc07bb2a9885 100644 --- a/plugins/FeedsNodeProcessor.inc +++ b/plugins/FeedsNodeProcessor.inc @@ -265,13 +265,11 @@ class FeedsNodeProcessor extends FeedsProcessor { ); // Include body field only if available. $type = node_type_get_type($this->config['content_type']); - if ($type->has_body) { - // Using 'teaser' instead of 'body' forces entire content above the break. - $targets['body'] = array( - 'name' => t('Body'), - 'description' => t('The body of the node. The teaser will be the same as the entire body.'), - ); - } + // Using 'teaser' instead of 'body' forces entire content above the break. + $targets['body'] = array( + 'name' => t('Body'), + 'description' => t('The body of the node. The teaser will be the same as the entire body.'), + ); $targets += array( 'nid' => array( 'name' => t('Node ID'),