? sites/default/files
? sites/default/settings.php
Index: modules/aggregator/aggregator.parser.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/aggregator/aggregator.parser.inc,v
retrieving revision 1.3
diff -u -p -r1.3 aggregator.parser.inc
--- modules/aggregator/aggregator.parser.inc	27 May 2009 18:33:54 -0000	1.3
+++ modules/aggregator/aggregator.parser.inc	14 Jul 2009 21:53:18 -0000
@@ -164,7 +164,9 @@ function aggregator_parse_feed(&$data, $
       $item['timestamp'] = aggregator_parse_w3cdtf($date); // Aggregator_parse_w3cdtf() returns FALSE on failure.
     }
 
-    $item += array('author' => '', 'description' => '');
+    $item['author'] = empty($item['author']) ? (empty($item['dc:creator']) ? '' : $item['dc:creator']) : $item['author'];
+
+    $item += array('description' => '');
 
     // Store on $feed object. This is where processors will look for parsed items.
     $feed->items[] = $item;
