Index: wrappers/taxonomy.module.copyme =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/category/wrappers/taxonomy.module.copyme,v retrieving revision 1.26.2.2 diff -u -p -r1.26.2.2 taxonomy.module.copyme --- wrappers/taxonomy.module.copyme 2 Feb 2007 08:24:56 -0000 1.26.2.2 +++ wrappers/taxonomy.module.copyme 7 Feb 2007 20:38:07 -0000 @@ -849,6 +849,13 @@ function taxonomy_nodeapi(&$node, $op, $ case 'load': $node->taxonomy = taxonomy_node_get_terms($node->nid); break; + case 'submit': + // Stick taxonomy in for modules who snoop around during submission. + // (i.e. simplenews) + if (empty($node->taxonomy) && !empty($node->category)) { + $node->taxonomy = $node->category; + } + break; case 'insert': if (category_is_cat_or_cont($node->nid)) { $type = category_node_get_type($node);