REST API: Use a strict `in_array()` check in `WP_REST_Request::get_parameter_order()`.

See #48839.

git-svn-id: https://develop.svn.wordpress.org/trunk@46803 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2019-11-29 21:58:37 +00:00
parent d50f672908
commit e3261b601f
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ class WP_REST_Request implements ArrayAccess {
}
$accepts_body_data = array( 'POST', 'PUT', 'PATCH', 'DELETE' );
if ( in_array( $this->method, $accepts_body_data ) ) {
if ( in_array( $this->method, $accepts_body_data, true ) ) {
$order[] = 'POST';
}