From bbaa4eb8a14274101502d90b66c4130975046fb0 Mon Sep 17 00:00:00 2001 From: markjaquith Date: Wed, 17 Nov 2010 16:38:28 +0000 Subject: [PATCH] The path goes INSIDE home_url(). fixes #15413 git-svn-id: http://svn.automattic.com/wordpress/trunk@16425 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/author-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/author-template.php b/wp-includes/author-template.php index e7b981be4..5ceb5d31f 100644 --- a/wp-includes/author-template.php +++ b/wp-includes/author-template.php @@ -225,7 +225,7 @@ function get_author_posts_url($author_id, $author_nicename = '') { $link = $wp_rewrite->get_author_permastruct(); if ( empty($link) ) { - $file = home_url() . '/'; + $file = home_url( '/' ); $link = $file . '?author=' . $auth_ID; } else { if ( '' == $author_nicename ) {