Active
Project:
image_import
Version:
master
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
31 May 2006 at 19:22 UTC
Updated:
14 Jul 2006 at 13:58 UTC
Jump to comment: Most recent file
The save function saves the node, then calls the taxonomy_node_save() however this is too late for modules using the hook_nodeapi().
Case in point: imported images will not be properly updated by the tac_lite module because when the hook_nodeapi() is called the taxonomy terms have not yet been inserted for the node.
This is also a problem for the image_exact module as reported above by tayknight.
I'll mark this as a bug because I think that this module should behave as a normal node create would behave.
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | 4.7-update.patch | 6.85 KB | jsloan |
Comments
Comment #1
jsloan commentedhere is a patch that will update the image_import cvs file to 4.7.0. the $terms are added to the $node object before the node_save() function is called so that the node_invoke() and node_invoke_nodeapi() can do their thing.
Comment #2
tayknight commentedFWIW, this doesn't fix the image_exact problem.