Skip to content
Snippets Groups Projects
Commit f5404fad authored by Alex Barth's avatar Alex Barth
Browse files

FeedsTermProcessor: Do not filter taxonomy_term_data table by vid when clearing.

parent 889128b3
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,8 @@
Feeds 7.x 2.0 XXXXXXXXXXXXXXXXXXX
---------------------------------
- FeedsTermProcessor: Do not filter taxonomy_term_data table by vid when
clearing.
- #932572 alex_b: FeedsTermProcessor: Batch term processing.
- Remove check for present name in terms that are imported. If we do such
validation, we need to do this on a more pluggable level.
......
......@@ -81,7 +81,6 @@ class FeedsTermProcessor extends FeedsProcessor {
$select = db_select('taxonomy_term_data', 'td');
$select->addField('td', 'tid');
$select->join('feeds_item', 'fi', "td.tid = fi.entity_id AND fi.entity_type = 'taxonomy_term'");
$select->condition('td.vid', $vocabulary->vid);
$select->condition('fi.id', $this->id);
$select->condition('fi.feed_nid', $source->feed_nid);
......
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