diff --git a/wp-includes/author-template.php b/wp-includes/author-template.php index 54ad8cada1..ef5d104d86 100644 --- a/wp-includes/author-template.php +++ b/wp-includes/author-template.php @@ -289,9 +289,11 @@ function the_author_posts_link( $deprecated = '' ) { * * @global WP_Rewrite $wp_rewrite * + * @param int $author_id Author ID. + * @param string $author_nicename Optional. The author's nicename (slug). Default empty. * @return string The URL to the author's page. */ -function get_author_posts_url($author_id, $author_nicename = '') { +function get_author_posts_url( $author_id, $author_nicename = '' ) { global $wp_rewrite; $auth_ID = (int) $author_id; $link = $wp_rewrite->get_author_permastruct(); diff --git a/wp-includes/version.php b/wp-includes/version.php index 52c6339ce8..b3920c89c9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-35992'; +$wp_version = '4.5-alpha-35993'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.