REST API: Add missing reference to WP_HTTP_Response

See #33982

Built from https://develop.svn.wordpress.org/trunk@34930


git-svn-id: http://core.svn.wordpress.org/trunk@34895 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Ryan McCue 2015-10-08 02:40:24 +00:00
parent a70d18a10d
commit a998ea45e2
2 changed files with 4 additions and 1 deletions

View File

@ -16,6 +16,9 @@ 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' );

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-34929';
$wp_version = '4.4-alpha-34930';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.