diff --git a/wp-includes/blocks.php b/wp-includes/blocks.php index ff087d0b82..a649bfe457 100644 --- a/wp-includes/blocks.php +++ b/wp-includes/blocks.php @@ -103,9 +103,9 @@ function register_block_script_handle( $metadata, $field_name ) { return false; } // Path needs to be normalized to work in Windows env. - $wpinc_path_norm = wp_normalize_path( ABSPATH . WPINC ); - $script_path_norm = wp_normalize_path( realpath( dirname( $metadata['file'] ) . '/' . $script_path ) ); - $is_core_block = isset( $metadata['file'] ) && 0 === strpos( $metadata['file'], $wpinc_path_norm ); + $wpinc_path_norm = wp_normalize_path( ABSPATH . WPINC ); + $script_path_norm = wp_normalize_path( realpath( dirname( $metadata['file'] ) . '/' . $script_path ) ); + $is_core_block = isset( $metadata['file'] ) && 0 === strpos( $metadata['file'], $wpinc_path_norm ); $script_uri = $is_core_block ? includes_url( str_replace( $wpinc_path_norm, '', $script_path_norm ) ) : diff --git a/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php b/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php index 75411b107f..02bfe5ce24 100644 --- a/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php +++ b/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php @@ -342,7 +342,7 @@ class WP_REST_Templates_Controller extends WP_REST_Controller { * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure. */ public function create_item( $request ) { - $prepared_post = $this->prepare_item_for_database( $request ); + $prepared_post = $this->prepare_item_for_database( $request ); if ( is_wp_error( $prepared_post ) ) { return $prepared_post; @@ -857,7 +857,7 @@ class WP_REST_Templates_Controller extends WP_REST_Controller { 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), - 'author' => array( + 'author' => array( 'description' => __( 'The ID for the author of the template.' ), 'type' => 'integer', 'context' => array( 'view', 'edit', 'embed' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index a7cfb02070..0a33add1bc 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-beta2-52344'; +$wp_version = '5.9-beta2-52345'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.