Index: mappers/feedapi_mapper_node.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/feedapi_mapper/mappers/feedapi_mapper_node.inc,v retrieving revision 1.2.2.2 diff -u -p -r1.2.2.2 feedapi_mapper_node.inc --- mappers/feedapi_mapper_node.inc 7 Aug 2009 15:43:43 -0000 1.2.2.2 +++ mappers/feedapi_mapper_node.inc 18 Aug 2009 08:46:15 -0000 @@ -23,10 +23,10 @@ function node_feedapi_mapper($op, $feed_ return t('Maps a feed element to the title, created date, published state or body of a node. Note that standard field mapping by FeedAPI still applies. For example if there is no feed element mapped to the node body you will still find the description in node body because that is how FeedAPI stores nodes.'); } else if ($op == 'list') { - return array('title' => t('Title'), 'created' => t('Published date'), 'body' => t('Body'), 'status' => t('Published state')); + return array('title' => t('Title'), 'created' => t('Published date'), 'body' => t('Body'), 'teaser' => t('Teaser'), 'status' => t('Published state')); } else if ($op == 'map') { - if (in_array($field_name, array('title', 'body', 'created'))) { + if (in_array($field_name, array('title', 'body', 'created', 'teaser'))) { if (is_string($feed_element) || is_numeric($feed_element)) { $node->{$field_name} = $feed_element; }