Index: includes/uuid_term.features.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/uuid_features/includes/uuid_term.features.inc,v
retrieving revision 1.1.2.1
diff -u -p -w -r1.1.2.1 uuid_term.features.inc
--- includes/uuid_term.features.inc	27 Jul 2010 14:42:19 -0000	1.1.2.1
+++ includes/uuid_term.features.inc	2 Jan 2011 13:35:08 -0000
@@ -73,15 +73,11 @@ function uuid_term_features_export_rende
       continue;
     }
 
-    $export = array('uuid' => $uuid);
-
-    // Whitelist of term properties.
-    $props = array('name', 'description', 'weight');
-    foreach ($props as $key) {
-      if (isset($term->$key)) {
-        $export[$key] = $term->$key;
-      }
-    }
+    // Main and contributed properties
+    $export = (array) $term;
+    unset($export['tid']);
+    unset($export['vid']);
+    $export['uuid'] = $uuid;
     
     // Get the UUID of the term's parent terms.
     $parents = taxonomy_get_parents($tid);
