--- wordpress-ori/wp-includes/rss.php	2008-01-09 18:48:00.000000000 +0100
+++ wordpress/wp-includes/rss.php	2008-04-07 02:21:00.000000000 +0200
@@ -159,6 +159,11 @@
 			if ($el == 'content' ) {
 				$el = 'atom_content';
 			}
+			// hack to be compatible with Google reader "share" atom feed
+			elseif (isset($this->current_item['title']))
+			{
+				return;
+			}
 
 			$this->incontent = $el;
 
@@ -185,7 +190,8 @@
 		//
 		elseif ($this->feed_type == ATOM and $el == 'link' )
 		{
-			if ( isset($attrs['rel']) and $attrs['rel'] == 'alternate' )
+			// hack to be compatible with Google reader "share" atom feed
+			if ( isset($attrs['rel']) and $attrs['rel'] == 'alternate' and !isset($this->current_item['link']))
 			{
 				$link_el = 'link';
 			}
