- Timestamp:
- 12/13/2016 03:33:14 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/class-wp-rest-request.php
r39563 r39594 670 670 } 671 671 672 $params = json_decode( $this->get_body(), true ); 672 $body = $this->get_body(); 673 if ( empty( $body ) ) { 674 return true; 675 } 676 677 $params = json_decode( $body, true ); 673 678 674 679 /*
Note: See TracChangeset
for help on using the changeset viewer.