Closed (fixed)
Project:
SimpleFeed
Version:
5.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
30 Mar 2007 at 21:16 UTC
Updated:
13 Apr 2007 at 21:31 UTC
Sorry, I am being lazy and am not actually submitting a patch for this, but I will type out my fix.
simplefeed_item.module - Line 364: $item->taxonomy['tags'][1] = $tags;
This will only work if the vocab id of your import vocab is 1.
This should probably be replaced with something like:
if ($vid=variable_get('simplefeed_vocab',0)) {
$item->taxonomy['tags'][$vid] = $tags;
}
Comments
Comment #1
m3avrck commentedThis was fixed a few days ago, grab the latest dev version! THanks!
Comment #2
(not verified) commented