From 332884f8dc30ef38ac6f0ad20af160b43c3cfc1a Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 25 Jun 2017 07:00:42 +0000 Subject: [PATCH] Docs: Add a missing quote in `user-agent` argument description in `WP_Http::request()`. Props ixkaito. Fixes #41154. Built from https://develop.svn.wordpress.org/trunk@40934 git-svn-id: http://core.svn.wordpress.org/trunk@40784 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-http.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-http.php b/wp-includes/class-http.php index abee7aa0a5..42553e5868 100644 --- a/wp-includes/class-http.php +++ b/wp-includes/class-http.php @@ -114,7 +114,7 @@ class WP_Http { * @type string $httpversion Version of the HTTP protocol to use. Accepts '1.0' and '1.1'. * Default '1.0'. * @type string $user-agent User-agent value sent. - * Default WordPress/' . get_bloginfo( 'version' ) . '; ' . get_bloginfo( 'url' ). + * Default 'WordPress/' . get_bloginfo( 'version' ) . '; ' . get_bloginfo( 'url' ). * @type bool $reject_unsafe_urls Whether to pass URLs through wp_http_validate_url(). * Default false. * @type bool $blocking Whether the calling code requires the result of the request. diff --git a/wp-includes/version.php b/wp-includes/version.php index 949412ca9c..c51f719d6f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-alpha-40933'; +$wp_version = '4.9-alpha-40934'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.