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

Props dkarfa.
Fixes #48839.

git-svn-id: https://develop.svn.wordpress.org/trunk@46802 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2019-11-29 21:57:09 +00:00
parent 890bd870e8
commit d50f672908
1 changed files with 3 additions and 3 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;
} }