? modules/aggregator/translations
Index: modules/aggregator/aggregator.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/aggregator/aggregator.module,v
retrieving revision 1.374.2.5
diff -u -p -r1.374.2.5 aggregator.module
--- modules/aggregator/aggregator.module	30 Mar 2009 12:15:53 -0000	1.374.2.5
+++ modules/aggregator/aggregator.module	15 Jul 2009 21:45:43 -0000
@@ -785,6 +785,11 @@ function aggregator_parse_feed(&$data, $
       }
     }
 
+    // Resolve dc:creator tag as the item author if author tag is not set.
+    if (empty($item['AUTHOR']) && !empty($item['DC:CREATOR'])) {
+      $item['AUTHOR'] = $item['DC:CREATOR'];
+    }
+
     // Save this item. Try to avoid duplicate entries as much as possible. If
     // we find a duplicate entry, we resolve it and pass along its ID is such
     // that we can update it if needed.
