Index: modules/aggregator/aggregator.module =================================================================== RCS file: /cvs/drupal/drupal/modules/aggregator/aggregator.module,v retrieving revision 1.308 diff -u -F^f -r1.308 aggregator.module --- modules/aggregator/aggregator.module 5 Oct 2006 14:45:13 -0000 1.308 +++ modules/aggregator/aggregator.module 5 Oct 2006 18:11:12 -0000 @@ -1336,7 +1336,7 @@ function theme_aggregator_block_item($it } // Display the external link to the item. - $output .= ''. check_plain($item->title) ."\n"; + $output .= ''. filter_xss($item->title) ."\n"; return $output; } @@ -1351,7 +1351,7 @@ function theme_aggregator_block_item($it * @ingroup themeable */ function theme_aggregator_summary_item($item) { - $output = ''. check_plain($item->title) .' '. t('%age old', array('%age' => format_interval(time() - $item->timestamp))) .''; + $output = ''. filter_xss($item->title) .' '. t('%age old', array('%age' => format_interval(time() - $item->timestamp))) .''; if ($item->feed_link) { $output .= ', '. check_plain($item->feed_title) .''; } @@ -1378,7 +1378,7 @@ function theme_aggregator_page_item($ite } $output .= "
\n"; - $output .= '

'. check_plain($item->title) ."

\n"; + $output .= '

'. filter_xss($item->title) ."

\n"; $output .= "
$source $source_date
\n"; if ($item->description) {