From dae5923c1dcf750655391aba1407b30513ca0f06 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Thu, 8 Oct 2015 19:29:25 +0000 Subject: [PATCH] After [34953], unbreak WordPress. See [34930], #33982. Built from https://develop.svn.wordpress.org/trunk@34954 git-svn-id: http://core.svn.wordpress.org/trunk@34919 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/http.php | 3 +++ wp-includes/rest-api.php | 3 --- wp-includes/version.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-includes/http.php b/wp-includes/http.php index 30782c4e50..6e65e36dae 100644 --- a/wp-includes/http.php +++ b/wp-includes/http.php @@ -30,3 +30,6 @@ require_once( ABSPATH . WPINC . '/class-wp-http-cookie.php' ); /** WP_Http_Encoding class */ require_once( ABSPATH . WPINC . '/class-wp-http-encoding.php' ); + +/** WP_HTTP_Response class */ +require_once( ABSPATH . WPINC . '/class-wp-http-response.php' ); diff --git a/wp-includes/rest-api.php b/wp-includes/rest-api.php index e244c5f3a7..9c7acb1b04 100644 --- a/wp-includes/rest-api.php +++ b/wp-includes/rest-api.php @@ -16,9 +16,6 @@ define( 'REST_API_VERSION', '2.0' ); /** WP_REST_Server class */ require_once( ABSPATH . WPINC . '/rest-api/class-wp-rest-server.php' ); -/** WP_HTTP_Response class */ -require_once( ABSPATH . WPINC . '/rest-api/class-wp-http-response.php' ); - /** WP_REST_Response class */ require_once( ABSPATH . WPINC . '/rest-api/class-wp-rest-response.php' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 5825889b3d..46de2dbcc9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34953'; +$wp_version = '4.4-alpha-34954'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.