Index: wp-includes/rss.php
===================================================================
--- wp-includes/rss.php	(revision 4934)
+++ wp-includes/rss.php	(working copy)
@@ -816,6 +816,7 @@
 		return -1;
 	}
 	}
+
 function wp_rss ($url, $num_items) {
 	//ini_set("display_errors", false); uncomment to suppress php errors thrown if the feed is not returned.
 	$rss = fetch_rss($url);
@@ -824,7 +825,7 @@
 			$rss->items = array_slice($rss->items, 0, $num_items);
 				foreach ($rss->items as $item ) {
 					echo "<li>\n";
-					echo "<a href='$item[link]' title='$item[description]'>";
+					echo "<a href='$item[link]'>";
 					echo htmlentities($item['title']);
 					echo "</a><br />\n";
 					echo "</li>\n";
@@ -842,7 +843,7 @@
 		$rss->items = array_slice($rss->items, 0, $num_items);
 		foreach ($rss->items as $item ) {
 			echo "<li>\n";
-			echo "<a href='$item[link]' title='$item[description]'>";
+			echo "<a href='$item[link]'>";
 			echo htmlentities($item['title']);
 			echo "</a><br />\n";
 			echo "</li>\n";
