- Timestamp:
- 12/16/2016 05:42:23 AM (9 years ago)
- Location:
- branches/4.7
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/wp-includes/rest-api/class-wp-rest-request.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.7
-
branches/4.7/src/wp-includes/rest-api/class-wp-rest-request.php
r39111 r39609 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.