Needs review
Project:
Feed Element Mapper
Version:
5.x-1.0-beta7
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
16 Mar 2009 at 16:46 UTC
Updated:
16 Mar 2009 at 16:46 UTC
Ran into an issue when mapping new taxonomy terms that contain HTML entities. The entities weren't be converted into their corresponding characters and making the new taxonomy term messy. Processing the name of the term with html_entity_decode on line 83 of feedapi_mapper_taxonomy.inc seems to have fixed the issue. The new line looks like this:
$new_term['name'] = html_entity_decode($term);