Index: wp-includes/functions.php
===================================================================
--- wp-includes/functions.php	(revision 7383)
+++ wp-includes/functions.php	(working copy)
@@ -410,27 +410,6 @@
 	return $data;
 }
 
-
-function make_url_footnote( $content ) {
-	preg_match_all( '/<a(.+?)href=\"(.+?)\"(.*?)>(.+?)<\/a>/', $content, $matches );
-	$j = 0;
-	for ( $i=0; $i<count($matches[0]); $i++ ) {
-		$links_summary = ( !$j ) ? "\n" : $links_summary;
-		$j++;
-		$link_match = $matches[0][$i];
-		$link_number = '['.($i+1).']';
-		$link_url = $matches[2][$i];
-		$link_text = $matches[4][$i];
-		$content = str_replace( $link_match, $link_text . ' ' . $link_number, $content );
-		$link_url = ( ( strtolower( substr( $link_url, 0, 7 ) ) != 'http://' ) && ( strtolower( substr( $link_url, 0, 8 ) ) != 'https://' ) ) ? get_option( 'home' ) . $link_url : $link_url;
-		$links_summary .= "\n" . $link_number . ' ' . $link_url;
-	}
-	$content  = strip_tags( $content );
-	$content .= $links_summary;
-	return $content;
-}
-
-
 function xmlrpc_getposttitle( $content ) {
 	global $post_default_title;
 	if ( preg_match( '/<title>(.+?)<\/title>/is', $content, $matchtitle ) ) {
Index: wp-includes/feed.php
===================================================================
--- wp-includes/feed.php	(revision 7383)
+++ wp-includes/feed.php	(working copy)
@@ -45,8 +45,6 @@
 	if ( 1== $encode_html ) {
 		$content = wp_specialchars($content);
 		$cut = 0;
-	} elseif ( 0 == $encode_html ) {
-		$content = make_url_footnote($content);
 	} elseif ( 2 == $encode_html ) {
 		$content = strip_tags($content);
 	}

