Index: feedapi_node/feedapi_node.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feedapi/feedapi_node/Attic/feedapi_node.module,v
retrieving revision 1.1.2.18.2.15
diff -u -r1.1.2.18.2.15 feedapi_node.module
--- feedapi_node/feedapi_node.module	1 Oct 2008 08:55:47 -0000	1.1.2.18.2.15
+++ feedapi_node/feedapi_node.module	2 Oct 2008 20:11:24 -0000
@@ -314,14 +314,14 @@
     $node->status = 1;
   }
   $feed_node = node_load($feed_nid);
-  $node->title = $feed_item->title;
+  $node->title = html_entity_decode($feed_item->title);
   if (empty($node->title) && !empty($feed_item->description)) {
     // Explode to words and use the first 3 words.
     $words = preg_split("/[\s,]+/", $feed_item->description);
     $node->title = $words[0] .' '. $words[1] .' '. $words[2];
   }
-  $node->body = $feed_item->description;
-  $node->teaser = node_teaser($feed_item->description);
+  $node->body = html_entity_decode($feed_item->description);
+  $node->teaser = node_teaser($node->body);
   // Stick feed item on node so that add on modules can act on it.
   // A feed item can come in from more than one feed.
   $node->feedapi_node->feed_nids[$feed_nid] = $feed_nid;
