REST API: Unbreak everything.

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

See #33982.


git-svn-id: https://develop.svn.wordpress.org/trunk@34929 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan McCue 2015-10-08 02:33:51 +00:00
parent b39211475d
commit 007e7b8cd4

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' );