REST API: Unbreak everything.

Obviously, it wouldn't have been a good commit unless I botched it.

See #33982.

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


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

View File

@ -14,13 +14,13 @@
define( 'REST_API_VERSION', '2.0' );
/** WP_REST_Server class */
require_once( ABSPATH . WPINC . '/rest-api/lib/class-wp-rest-server.php' );
require_once( ABSPATH . WPINC . '/rest-api/class-wp-rest-server.php' );
/** WP_REST_Response class */
require_once( ABSPATH . WPINC . '/rest-api/lib/class-wp-rest-response.php' );
require_once( ABSPATH . WPINC . '/rest-api/class-wp-rest-response.php' );
/** WP_REST_Request class */
require_once( ABSPATH . WPINC . '/rest-api/lib/class-wp-rest-request.php' );
require_once( ABSPATH . WPINC . '/rest-api/class-wp-rest-request.php' );
/** REST functions */
require_once( ABSPATH . WPINC . '/rest-api/rest-functions.php' );

View File

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