Changeset 618811
- Timestamp:
- 10/29/2012 08:18:54 PM (13 years ago)
- File:
-
- 1 edited
-
jetpack/trunk/class.jetpack-signature.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
jetpack/trunk/class.jetpack-signature.php
r610170 r618811 43 43 $body = $override['body']; 44 44 } else if ( 'POST' == strtoupper( $_SERVER['REQUEST_METHOD'] ) ) { 45 $body = $GLOBALS['HTTP_RAW_POST_DATA'];45 $body = isset( $GLOBALS['HTTP_RAW_POST_DATA'] ) ? $GLOBALS['HTTP_RAW_POST_DATA'] : null; 46 46 } else { 47 47 $body = null;
Note: See TracChangeset
for help on using the changeset viewer.