Index: modules/aggregator/aggregator.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/aggregator/aggregator.module,v
retrieving revision 1.374.2.3
diff -u -r1.374.2.3 aggregator.module
--- modules/aggregator/aggregator.module	8 Aug 2008 20:10:01 -0000	1.374.2.3
+++ modules/aggregator/aggregator.module	2 Oct 2008 00:21:23 -0000
@@ -899,7 +899,11 @@
   }
 
   // Display the external link to the item.
-  $output .= '<a href="'. check_url($item->link) .'">'. check_plain($item->title) ."</a>\n";
+  // The feed title is defined for category-blocks to distinguish between the feeds.
+  if (isset($item->ftitle)) {
+    $output .= '<span class="feed-title">' . check_plain($item->ftitle) . ':</span> ';
+  }
+  $output .= '<a href="' . check_url($item->link) . '">' . check_plain($item->title) . "</a>\n";
 
   return $output;
 }
