Skip to content
Snippets Groups Projects
Commit 15904439 authored by young hahn's avatar young hahn
Browse files

Add vocabulary_machine_name attribute to term objects in FeedsTermProcessor.

parent 4e0df84d
No related branches found
No related tags found
No related merge requests found
...@@ -33,6 +33,7 @@ class FeedsTermProcessor extends FeedsProcessor { ...@@ -33,6 +33,7 @@ class FeedsTermProcessor extends FeedsProcessor {
$vocabulary = $this->vocabulary(); $vocabulary = $this->vocabulary();
$term = new stdClass(); $term = new stdClass();
$term->vid = $vocabulary->vid; $term->vid = $vocabulary->vid;
$term->vocabulary_machine_name = $vocabulary->machine_name;
return $term; return $term;
} }
......
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