]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/class-http.php
WordPress 4.7
[autoinstalls/wordpress.git] / wp-includes / class-http.php
index 5a3075846c4a76acefd3f57c5613d04b3c007599..b9f5ab50fba6b5bd6d230871063129c2262a31c2 100644 (file)
@@ -101,8 +101,6 @@ class WP_Http {
         * @access public
         * @since 2.7.0
         *
-        * @global string $wp_version
-        *
         * @param string       $url  The request URL.
         * @param string|array $args {
         *     Optional. Array or string of HTTP request arguments.
@@ -116,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/' . $wp_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.
@@ -148,8 +146,6 @@ class WP_Http {
         *                        A WP_Error instance upon error.
         */
        public function request( $url, $args = array() ) {
-               global $wp_version;
-
                $defaults = array(
                        'method' => 'GET',
                        /**
@@ -185,7 +181,7 @@ class WP_Http {
                         *
                         * @param string $user_agent WordPress user agent string.
                         */
-                       'user-agent' => apply_filters( 'http_headers_useragent', 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) ),
+                       'user-agent' => apply_filters( 'http_headers_useragent', 'WordPress/' . get_bloginfo( 'version' ) . '; ' . get_bloginfo( 'url' ) ),
                        /**
                         * Filters whether to pass URLs through wp_http_validate_url() in an HTTP request.
                         *
@@ -304,7 +300,7 @@ class WP_Http {
                        'timeout' => $r['timeout'],
                        'useragent' => $r['user-agent'],
                        'blocking' => $r['blocking'],
-                       'hooks' => new Requests_Hooks(),
+                       'hooks' => new WP_HTTP_Requests_Hooks( $url, $r ),
                );
 
                // Ensure redirects follow browser behaviour.