Index: mm_mailhandler.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/media_mover/contrib/mm_mailhandler/Attic/mm_mailhandler.module,v
retrieving revision 1.1.2.6
diff -u -p -r1.1.2.6 mm_mailhandler.module
--- mm_mailhandler.module 30 Nov 2009 13:41:43 -0000  1.1.2.6
+++ mm_mailhandler.module 1 Dec 2009 13:08:14 -0000
@@ -314,9 +314,9 @@ function mm_mailhandler_attachments($nod
         $item['filesize'] = filesize($file);
         $item['harvest_file'] = $file;
         $item['mime'] = file_get_mimetype($file);
-        $item['user']->uid = $node->uid;
-        $item['node']->title = $node->title;
-        $item['node']->uid = $node->uid;
+        $item['data']['user'] = user_load(array('uid' => $node->uid));
+        $item['data']['node']->title = $node->title;
+        $item['data']['node']->uid = $node->uid;
 
         // remove the data from the node so we are not passing extra data around
         unset($node->mimeparts->{$part_id}->data);
@@ -413,4 +413,4 @@ function mm_mailhandler_test_mailbox($co
   }
 
   return;
-}
\ No newline at end of file
+}

