From b5993596dd09e3760802f22cc02264074ec146ac Mon Sep 17 00:00:00 2001 From: Alex Barth <alex_b@53995.no-reply.drupal.org> Date: Wed, 8 Sep 2010 21:03:50 +0000 Subject: [PATCH] Pass into map(), not . --- plugins/FeedsTermProcessor.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/FeedsTermProcessor.inc b/plugins/FeedsTermProcessor.inc index 5978f287..c8c0f9cb 100644 --- a/plugins/FeedsTermProcessor.inc +++ b/plugins/FeedsTermProcessor.inc @@ -33,7 +33,7 @@ class FeedsTermProcessor extends FeedsProcessor { $term = (array) taxonomy_get_term($tid, TRUE); $term = module_invoke_all('feeds_taxonomy_load', $term); } - $term = $this->map($item, $term, $source->feed_nid); + $term = $this->map($batch, $term, $source->feed_nid); // Check if term name is set, otherwise continue. if (empty($term['name'])) { -- GitLab