--- wordpress/wp-includes/feed-functions.php	Sat Jan  8 00:01:59 2005
+++ /usr/local/www/data/wp/wp-includes/feed-functions.php	Sat Jan 29 01:53:14 2005
@@ -1,8 +1,15 @@
 <?php
 
+function get_bloginfo_rss($show = '') {
+	$info = strip_tags(get_bloginfo($show));
+    return convert_chars($info);
+}
+	
 function bloginfo_rss($show='') {
-    $info = strip_tags(get_bloginfo($show));
-    echo convert_chars($info);
+	if ('' == $show)
+		echo get_bloginfo_rss();
+	else
+		echo get_bloginfo_rss($show);
 }
 
 function the_title_rss() {
@@ -151,4 +158,4 @@
 	}
 }
 
-?>
\ No newline at end of file
+?>
