Changeset 652138
- Timestamp:
- 01/13/2013 09:24:07 PM (13 years ago)
- File:
-
- 1 edited
-
better-wp-security/trunk/inc/secure.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
better-wp-security/trunk/inc/secure.php
r642113 r652138 14 14 15 15 //set a global variable if this is a call from InfiniteWP 16 if ( defined( 'IWP_AUTHORISED_CALL' ) ) { 16 $HTTP_RAW_POST_DATA = file_get_contents('php://input'); 17 $data = base64_decode($HTTP_RAW_POST_DATA); 18 if ( $data ) { 19 $unserialized_data = unserialize( $data ); 20 $iwp_action = $unserialized_data['iwp_action']; 21 } 22 if ( $iwp_action ) { 17 23 $isIWP = true; 18 24 } else {
Note: See TracChangeset
for help on using the changeset viewer.