Index: definitions/importexportapi_taxonomy.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/importexportapi/definitions/importexportapi_taxonomy.inc,v retrieving revision 1.12 diff -u -p -r1.12 importexportapi_taxonomy.inc --- definitions/importexportapi_taxonomy.inc 25 Mar 2007 21:21:47 -0000 1.12 +++ definitions/importexportapi_taxonomy.inc 12 Oct 2009 13:41:37 -0000 @@ -208,19 +208,25 @@ function taxonomy_node_def_alter(&$def, '#db_default_table' => 'term_node', '#xml_plural' => 'taxonomy-terms', '#csv_plural' => 'taxonomy-terms', - '#xml_mapping' => 'term' + '#xml_mapping' => 'term', ); $def['taxonomy']['nid'] = array( '#type' => 'int', '#title' => t('Node ID'), '#reference_entity' => $type, - '#key_component' => TRUE + '#key_component' => TRUE, + ); + $def['taxonomy']['vid'] = array( + '#type' => 'int', + '#title' => t('Node Revision'), + '#reference_entity' => 'vid', + '#key_component' => TRUE, ); $def['taxonomy']['tid'] = array( '#type' => 'int', '#title' => t('Term ID'), '#reference_entity' => 'term', - '#key_component' => TRUE + '#key_component' => TRUE, ); }