Index: wp-includes/author-template.php
===================================================================
--- wp-includes/author-template.php	(Revision 14027)
+++ wp-includes/author-template.php	(Arbeitskopie)
@@ -128,6 +128,23 @@
 }
 
 /**
+ * Retrieve either author's link or author's name.
+ *
+ * If the author has a home page set, return an HTML link, otherwise just return the
+ * author's name.
+ *
+ * @uses get_the_author_meta()
+ * @uses get_the_author()
+ */
+function get_author_link() {
+	if ( get_the_author_meta('url') ) {
+		return '<a href="' . get_the_author_meta('url') . '" title="' . esc_attr( sprintf(__("Visit %s&#8217;s website"), get_the_author()) ) . '" rel="external">' . get_the_author() . '</a>';
+	} else {
+		return get_the_author();
+	}
+}
+
+/**
  * Display either author's link or author's name.
  *
  * If the author has a home page set, echo an HTML link, otherwise just echo the
@@ -139,11 +156,7 @@
  * @uses the_author()
  */
 function the_author_link() {
-	if ( get_the_author_meta('url') ) {
-		echo '<a href="' . get_the_author_meta('url') . '" title="' . esc_attr( sprintf(__("Visit %s&#8217;s website"), get_the_author()) ) . '" rel="external">' . get_the_author() . '</a>';
-	} else {
-		the_author();
-	}
+	echo get_author_link();
 }
 
 /**
