Rimu's right about module weights and overriding core modules - probably the simplest way to work around this. If you do the latter, make sure to manually apply any updates released (not that you'll be needing to worry about that on Drupal 5 I guess).
A couple of other options you might consider if that's not the fix you needed - * hook_db_rewrite_sql() may allow you to exclude the vocab you require, but can be complicated * (more extreme) you could provide your own module callback to replace the node edit form. If you entirely replace the callback (and you can base this code on the existing callback from node.module) you can choose what taxos appear. If you have cases eg where an admin sets a node to have restricted taxonomies and the node is still editable to a less privileged user, using node_save or taxonomy_node_save() will probably drop those taxonomy entries when an unprivileged user edits a node with said taxos. -- NZ PHP Users Group: http://groups.google.com/group/nzphpug To post, send email to [email protected] To unsubscribe, send email to [email protected] To unsubscribe, reply using "remove me" as the subject.
