...because the function "feedapi_enabled ($node->type)" changed to "feedapi_enabled_type ($node->type)" in feed_api ver. 5.x-1.3.

a simple change in two lines of feedapi_mapper.module seems to make the mapper work with the updated feed_api.module--at least i didn't encounter any further errors yet.

feedapi_mapper.module, v 1.1.2.7 2008/03/17
line 24:
if (feedapi_enabled($node->type)) {
change to
if (feedapi_enabled_type($node->type)) {

and line 37:
if ($node_type && feedapi_enabled($node_type)) {
change to
if ($node_type && feedapi_enabled_type($node_type)) {

i must admit that i've never rolled a patch for drupal and don't have time to get into the details just now. if nobody else does it, i'll do it in a few days...

Comments

phani’s picture

Status: Active » Closed (duplicate)

sorry, didn't see that the patch had been supplied already...