Skip to content
Snippets Groups Projects
Commit d2d11d29 authored by Chris Leppanen's avatar Chris Leppanen
Browse files

Issue #1784436 by stefan.norman: Fixed FeedsTermProcessor existingEntityId...

Issue #1784436 by stefan.norman: Fixed FeedsTermProcessor existingEntityId doesn't honour id column in feeds_item().
parent 8fa4e7f1
No related branches found
No related tags found
No related merge requests found
......@@ -224,13 +224,6 @@ class FeedsTermProcessor extends FeedsProcessor {
return $tid;
}
}
elseif ($target == 'guid') {
$query = db_select('feeds_item')
->fields('feeds_item', array('entity_id'))
->condition('entity_type', 'taxonomy_term');
$tid = $query->condition('guid', $value)->execute()->fetchField();
return ($tid) ? $tid : 0;
}
}
return 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment