Hi. I'm not sure if you've fixed this already, but I had to change the code in supported\taxonomy.inc on line 173 from
if (is_numeric($term) && ($term = taxonomy_get_term($text))) {
$missing_terms[$vid][$text] = $term->tid;
return $term->tid;
}
to
if (is_numeric($text) && ($term = taxonomy_get_term($text))) {
$missing_terms[$vid][$text] = $term->tid;
return $term->tid;
}
And then it worked perfectly.
Comments
Comment #1
Robrecht Jacques commentedThanks!
Fixed in 5.x-1.x-dev. Will be included in next release (5.x-1.2).
Comment #2
(not verified) commented