diff --git a/wp-includes/http.php b/wp-includes/http.php index d76298368f..4981875968 100644 --- a/wp-includes/http.php +++ b/wp-includes/http.php @@ -222,7 +222,8 @@ function wp_remote_retrieve_headers( $response ) { * * @param array|WP_Error $response HTTP response. * @param string $header Header name to retrieve value from. - * @return string The header value. Empty string on if incorrect parameter given, or if the header doesn't exist. + * @return array|string The header(s) value(s). Array if multiple headers with the same name are retrieved. + * Empty string if incorrect parameter given, or if the header doesn't exist. */ function wp_remote_retrieve_header( $response, $header ) { if ( is_wp_error( $response ) || ! isset( $response['headers'] ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 2432eebdc7..6f48cfe7da 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-beta4-52440'; +$wp_version = '5.9-beta4-52441'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.