=== modified file 'planet.module'
--- planet.module	2009-03-17 15:38:26 +0000
+++ planet.module	2009-03-19 14:44:31 +0000
@@ -517,6 +517,8 @@
   else {
     watchdog('planet', 'You shouldn\'t be here. Something has gone terribly wrong.');
   }
+  
+  return $process_feed->title;
 }
 
 /**
@@ -713,8 +715,6 @@
       $entry->teaser = node_teaser($entry->body);    
       $entry->revision = true;
 
-
-
       if (!isset($entry->nid)) {            
         //print "Planet item " . $entry->title . "<br />";
         $entry->type = 'planet';
@@ -733,9 +733,8 @@
    
       }  
 
-      $node = node_submit($entry);
-      node_save($node);
-      db_query('INSERT INTO {planet_items} (fid, nid, iid, guid, link, created) VALUES(%d, %d, "%s", "%s", "%s", UNIX_TIMESTAMP(NOW()))', $process_feed->fid, $node->nid, $iid, $guid, $link);              
+      node_save($entry);
+      db_query('INSERT INTO {planet_items} (fid, nid, iid, guid, link, created) VALUES(%d, %d, "%s", "%s", "%s", UNIX_TIMESTAMP(NOW()))', $process_feed->fid, $entry->nid, $iid, $guid, $link);              
       watchdog('planet', 'Adding '. $title);
       drupal_set_message('Adding '. $title);
     }

