Closed (fixed)
Project:
Node import
Version:
5.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
5 Jun 2007 at 08:30 UTC
Updated:
19 Jun 2007 at 08:49 UTC
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