Index: export.pages.inc
===================================================================
--- export.pages.inc	(revision 18)
+++ export.pages.inc	(revision 95)
@@ -78,6 +78,16 @@
           $node->$key = in_array($key, $node_options);
         }
       }
+
+      // Fix taxonomy array
+      if (isset($node->taxonomy) && count($node->taxonomy)) {
+        $new_taxonomy = array();
+        foreach ($node->taxonomy as $term) {
+          $new_taxonomy[$term->vid][$term->tid] = $term->tid;
+        }
+        $node->taxonomy = $new_taxonomy;
+      }
+
       // Let other modules do special fixing up.
       // The function signature is: hook_export_node_alter(&$node, $original_node, $method)
       // Where $method is 'export'
