diff --git a/biblio.module b/biblio.module
index b7c19e3..f1d6d4e 100644
--- a/biblio.module
+++ b/biblio.module
@@ -2156,7 +2156,18 @@ function biblio_set_map($type, $format, $map) {
 function biblio_reset_map($type, $format) {
   module_invoke_all($format . '_map_reset', $type);
 }
+
 function biblio_field_extra_fields() {
   module_load_include('inc', 'biblio', 'includes/biblio.fields');
   return  _biblio_field_extra_fields();
-}
\ No newline at end of file
+}
+
+//Fixes node export importing issue #826506
+function biblio_node_export_node_alter($node, $original_node) {
+  if (property_exists($node, 'biblio_contributors' )) { 
+    foreach ($node->biblio_contributors as $n => $value) {
+      unset($node->biblio_contributors[$n]['cid']);
+    }
+  }
+}
+
