Index: wp-includes/post-template.php
===================================================================
--- wp-includes/post-template.php	(revision 9582)
+++ wp-includes/post-template.php	(working copy)
@@ -386,9 +386,7 @@
  * The formatted output of a list of pages.
  *
  * Displays page links for paginated posts (i.e. includes the <!--nextpage-->.
- * Quicktag one or more times). This works in much the same way as link_pages(),
- * the difference being that arguments are given in query string format. This
- * tag must be within The Loop.
+ * Quicktag one or more times). This tag must be within The Loop.
  *
  * The defaults for overwriting are:
  * 'next_or_number' - Default is 'number' (string). Indicates whether page
Index: wp-includes/bookmark-template.php
===================================================================
--- wp-includes/bookmark-template.php	(revision 9582)
+++ wp-includes/bookmark-template.php	(working copy)
@@ -122,7 +122,7 @@
 			$output .= $between . $desc;
 
 		if ($show_rating) {
-			$output .= $between . get_linkrating($bookmark);
+			$output .= $between . sanitize_bookmark_field('link_rating', $bookmark->link_rating, $bookmark->link_id, 'display');
 		}
 
 		$output .= "$after\n";
Index: wp-includes/author-template.php
===================================================================
--- wp-includes/author-template.php	(revision 9582)
+++ wp-includes/author-template.php	(working copy)
@@ -499,7 +499,7 @@
 				$link .= ' ';
 				if (empty($feed_image))
 					$link .= '(';
-				$link .= '<a href="' . get_author_rss_link(0, $author->ID, $author->user_nicename) . '"';
+				$link .= '<a href="' . get_author_feed_link($author->ID) . '"';
 
 				if ( !empty($feed) ) {
 					$title = ' title="' . $feed . '"';
Index: wp-includes/canonical.php
===================================================================
--- wp-includes/canonical.php	(revision 9582)
+++ wp-includes/canonical.php	(working copy)
@@ -126,7 +126,7 @@
 				$redirect['query'] = remove_query_arg('cat', $redirect['query']);
 		} elseif ( is_author() && !empty($_GET['author']) ) {
 			$author = get_userdata(get_query_var('author'));
-			if ( false !== $author && $redirect_url = get_author_link(false, $author->ID, $author->user_nicename) )
+			if ( false !== $author && $redirect_url = get_author_posts_url($author->ID, $author->user_nicename) )
 				$redirect['query'] = remove_query_arg('author', $redirect['author']);
 		}
 
