Index: wp-includes/rss.php
===================================================================
--- wp-includes/rss.php	(revision 5836)
+++ wp-includes/rss.php	(working copy)
@@ -9,6 +9,8 @@
  * License:		GPL
  */
 
+if ( defined('SKIP_MAGPIE') ) {
+
 define('RSS', 'RSS');
 define('ATOM', 'Atom');
 define('MAGPIE_USER_AGENT', 'WordPress/' . $wp_version);
@@ -825,20 +827,20 @@
 function wp_rss( $url, $num_items = -1 ) {
 	if ( $rss = fetch_rss( $url ) ) {
 		echo '<ul>';
-		
+
 		if ( $num_items !== -1 ) {
 			$rss->items = array_slice( $rss->items, 0, $num_items );
 		}
-		
+
 		foreach ( $rss->items as $item ) {
 			printf(
-				'<li><a href="%1$s" title="%2$s">%3$s</a></li>', 
-				clean_url( $item['link'] ), 
-				attribute_escape( strip_tags( $item['description'] ) ), 
+				'<li><a href="%1$s" title="%2$s">%3$s</a></li>',
+				clean_url( $item['link'] ),
+				attribute_escape( strip_tags( $item['description'] ) ),
 				htmlentities( $item['title'] )
 			);
 		}
-		
+
 		echo '</ul>';
 	} else {
 		_e( 'An error has occurred, which probably means the feed is down. Try again later.' );
@@ -864,4 +866,6 @@
 }
 endif;
 
+}
+
 ?>
\ No newline at end of file
