diff --git a/core/modules/taxonomy/src/Plugin/views/relationship/NodeTermData.php b/core/modules/taxonomy/src/Plugin/views/relationship/NodeTermData.php index 8b79ce2..06ebd83 100644 --- a/core/modules/taxonomy/src/Plugin/views/relationship/NodeTermData.php +++ b/core/modules/taxonomy/src/Plugin/views/relationship/NodeTermData.php @@ -89,6 +89,7 @@ public function query() { $query = db_select('taxonomy_term_data', 'td'); $query->addJoin($def['type'], 'taxonomy_index', 'tn', 'tn.tid = td.tid'); $query->condition('td.vid', array_filter($this->options['vids'])); + $query->condition('td.default_langcode', 1); $query->addTag('term_access'); $query->fields('td'); $query->fields('tn', array('nid'));