Index: atom.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/atom/atom.module,v retrieving revision 1.25 diff -u -p -r1.25 atom.module --- atom.module 24 Feb 2008 12:49:59 -0000 1.25 +++ atom.module 3 Mar 2008 14:02:58 -0000 @@ -301,8 +301,8 @@ function theme_atom_feed($feed_info, $la $feed = ''."\n"; $feed .= '\n"; - $feed .= ' '. $feed_info['title'] ."\n"; - $feed .= $feed_info['subtitle'] == '' ? '' : ' '. $feed_info['subtitle'] ."\n"; + $feed .= ' '. htmlentities( $feed_info['title'] ) ."\n"; + $feed .= $feed_info['subtitle'] == '' ? '' : ' '. htmlentities( $feed_info['subtitle'] ) ."\n"; $feed .= ' '."\n"; $feed .= ' '."\n"; $feed .= ' '. $feed_info['atom_url'] ."\n";