Closed (fixed)
Project:
Taxonomy Menu
Version:
6.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Anonymous (not verified)
Created:
17 Jun 2008 at 20:58 UTC
Updated:
18 Dec 2019 at 04:20 UTC
When a node is inserted/updated the Taxonomy Menu is rebuilt to reflect the insert/updated node. However, when deleting a node, the Taxonomy Menu is not rebuilt.
In taxonomy_menu.module, starting at line 62 :
elseif ($op == 'update' or $op == 'insert') {
menu_rebuild();
}
To fix this the above was changed to include $op == 'delete' :
elseif ($op == 'update' or $op == 'insert' or $op == 'delete') {
menu_rebuild();
}
Comments
Comment #1
Afief commentedCommitted. I am amazed that you seem to be the only one who caught this. Thanks.
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.