REST API: Use a strict `in_array()` check in `WP_REST_Meta_Fields::get_registered_fields()`.

Props dkarfa.
Fixes #48839.
Built from https://develop.svn.wordpress.org/trunk@46802


git-svn-id: http://core.svn.wordpress.org/trunk@46602 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-11-29 21:59:03 +00:00
parent 49401759f3
commit d33571f7d5
2 changed files with 4 additions and 4 deletions

View File

@ -126,8 +126,8 @@ abstract class WP_REST_Meta_Fields {
* *
* @since 4.7.0 * @since 4.7.0
* *
* @param array $meta Array of meta parsed from the request. * @param array $meta Array of meta parsed from the request.
* @param int $object_id Object ID to fetch meta for. * @param int $object_id Object ID to fetch meta for.
* @return null|WP_Error Null on success, WP_Error object on failure. * @return null|WP_Error Null on success, WP_Error object on failure.
*/ */
public function update_value( $meta, $object_id ) { public function update_value( $meta, $object_id ) {
@ -435,7 +435,7 @@ abstract class WP_REST_Meta_Fields {
$rest_args['schema'] = $this->default_additional_properties_to_false( $rest_args['schema'] ); $rest_args['schema'] = $this->default_additional_properties_to_false( $rest_args['schema'] );
if ( ! in_array( $type, array( 'string', 'boolean', 'integer', 'number', 'array', 'object' ) ) ) { if ( ! in_array( $type, array( 'string', 'boolean', 'integer', 'number', 'array', 'object' ), true ) ) {
continue; continue;
} }

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.4-alpha-46801'; $wp_version = '5.4-alpha-46802';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.