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

Robrecht Jacques’s picture

Status: Active » Fixed

Thanks!

Fixed in 5.x-1.x-dev. Will be included in next release (5.x-1.2).

Anonymous’s picture

Status: Fixed » Closed (fixed)