diff --git a/wp-includes/class-http.php b/wp-includes/class-http.php index 13475c5c22..b8cc4ee4fa 100644 --- a/wp-includes/class-http.php +++ b/wp-includes/class-http.php @@ -545,6 +545,8 @@ class WP_Http { * The order for requests is cURL, and then PHP Streams. * * @since 3.2.0 + * @deprecated 5.0.0 Use WP_Http::request() + * @see WP_Http::request() * * @param string $url URL to Request * @param array $args Request arguments @@ -572,7 +574,7 @@ class WP_Http { return $response; } - /** This action is documented in wp-includes/class-http.php */ + /** This filter is documented in wp-includes/class-http.php */ return apply_filters( 'http_response', $response, $args, $url ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index a868bc2b6c..664e192d06 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-42765'; +$wp_version = '5.0-alpha-42766'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.