Index: modules/aggregator/aggregator.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/aggregator/aggregator.module,v
retrieving revision 1.389
diff -u -r1.389 aggregator.module
--- modules/aggregator/aggregator.module	16 Aug 2008 14:48:17 -0000	1.389
+++ modules/aggregator/aggregator.module	16 Aug 2008 21:37:37 -0000
@@ -195,6 +195,8 @@
     'weight' => 1,
   );
   $items['aggregator/sources/%aggregator_feed'] = array(
+    'title callback' => '_aggregator_source_title',
+    'title arguments' => array(2),
     'page callback' => 'aggregator_page_source',
     'page arguments' => array(2),
     'access arguments' => array('access news feeds'),
@@ -249,6 +251,16 @@
 }
 
 /**
+ * Menu callback.
+ *
+ * @return
+ *   An aggregator source title.
+ */
+function _aggregator_source_title($feed) {
+  return $feed['title'];
+}
+
+/**
  * Implementation of hook_init().
  */
 function aggregator_init() {
