? .git
? .gitignore
? 878002-5_multiple.patch
? 878002_3.patch
? 904804-1_exportable_taxonomy.patch
? 904804-2_exportable_taxonomy.patch
? 904804-3_exportable_taxonomy.patch
? 904804-4_exportable_taxonomy.patch
? libraries/simplepie.inc
Index: plugins/FeedsDataProcessor.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feeds/plugins/FeedsDataProcessor.inc,v
retrieving revision 1.17
diff -u -p -r1.17 FeedsDataProcessor.inc
--- plugins/FeedsDataProcessor.inc	7 Sep 2010 17:29:36 -0000	1.17
+++ plugins/FeedsDataProcessor.inc	8 Sep 2010 01:06:00 -0000
@@ -205,6 +205,9 @@ class FeedsDataProcessor extends FeedsPr
    * Set target element, bring element in a FeedsDataHandler format.
    */
   public function setTargetElement(&$target_item, $target_element, $value) {
+    if (empty($value)) {
+      return;
+    }
     if (strpos($target_element, '.')) {
 
       /**
@@ -226,7 +229,12 @@ class FeedsDataProcessor extends FeedsPr
           $field => $v,
         );
       }
-      $target_item['#'. $table] = $values;
+      if (is_array($target_item["#$table"])) {
+        $target_item["#$table"] = array_merge($target_item["#$table"], $values);
+      }
+      else {
+        $target_item["#$table"] = $values;
+      }
     }
     else {
       $target_item[$target_element] = $value;
