From 007e7b8cd48780ef38136ae30b02f86d776243e6 Mon Sep 17 00:00:00 2001 From: Ryan McCue Date: Thu, 8 Oct 2015 02:33:51 +0000 Subject: [PATCH] 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 --- src/wp-includes/rest-api.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/rest-api.php b/src/wp-includes/rest-api.php index dc880d6304..9c7acb1b04 100644 --- a/src/wp-includes/rest-api.php +++ b/src/wp-includes/rest-api.php @@ -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' );