diff --git a/wp-includes/author-template.php b/wp-includes/author-template.php index ddfa202ebf..2911366f03 100644 --- a/wp-includes/author-template.php +++ b/wp-includes/author-template.php @@ -474,7 +474,7 @@ function wp_list_authors( $args = '' ) { $link = sprintf( '%3$s', - get_author_posts_url( $author->ID, $author->user_nicename ), + esc_url( get_author_posts_url( $author->ID, $author->user_nicename ) ), /* translators: %s: Author's display name. */ esc_attr( sprintf( __( 'Posts by %s' ), $author->display_name ) ), $name diff --git a/wp-includes/version.php b/wp-includes/version.php index 83284d315f..583002332d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-beta2-51189'; +$wp_version = '5.8-beta2-51190'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.