Changeset 46803
- Timestamp:
- 11/29/2019 09:58:37 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/class-wp-rest-request.php
r46660 r46803 351 351 352 352 $accepts_body_data = array( 'POST', 'PUT', 'PATCH', 'DELETE' ); 353 if ( in_array( $this->method, $accepts_body_data ) ) {353 if ( in_array( $this->method, $accepts_body_data, true ) ) { 354 354 $order[] = 'POST'; 355 355 }
Note: See TracChangeset
for help on using the changeset viewer.