Index: modules/aggregator.module =================================================================== RCS file: /cvs/drupal/drupal/modules/aggregator.module,v retrieving revision 1.251 diff -u -p -r1.251 aggregator.module --- modules/aggregator.module 1 Sep 2005 19:50:18 -0000 1.251 +++ modules/aggregator.module 1 Sep 2005 22:30:06 -0000 @@ -1210,13 +1210,17 @@ function theme_aggregator_page_item($ite $output .= "
\n"; $output .= '
'. format_date($item->timestamp, 'custom', 'H:i') ."
\n"; $output .= "
\n"; - $output .= ' \n"; + + $source = ''; + if ($item->ftitle && $item->fid) { + $source = ''. l($item->ftitle, "aggregator/sources/$item->fid") .":\n"; + } + + $output .= ' \n"; + if ($item->description) { $output .= '
'. $item->description ."
\n"; } - if ($item->ftitle && $item->fid) { - $output .= '
'. t('Source') .': '. l($item->ftitle, "aggregator/sources/$item->fid") ."
\n"; - } $result = db_query('SELECT c.title, c.cid FROM {aggregator_category_item} ci LEFT JOIN {aggregator_category} c ON ci.cid = c.cid WHERE ci.iid = %d ORDER BY c.title', $item->iid); $categories = array();