diff --git a/wp-includes/rest-api.php b/wp-includes/rest-api.php index 7a44856aaf..91b7343f56 100644 --- a/wp-includes/rest-api.php +++ b/wp-includes/rest-api.php @@ -514,7 +514,7 @@ function rest_send_cors_headers( $value ) { if ( $origin ) { header( 'Access-Control-Allow-Origin: ' . esc_url_raw( $origin ) ); - header( 'Access-Control-Allow-Methods: POST, GET, OPTIONS, PUT, DELETE' ); + header( 'Access-Control-Allow-Methods: OPTIONS, GET, POST, PUT, PATCH, DELETE' ); header( 'Access-Control-Allow-Credentials: true' ); header( 'Vary: Origin' ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index f274cdd9eb..6467463b99 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-beta1-39041'; +$wp_version = '4.7-beta1-39042'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.