Changeset 662836
- Timestamp:
- 02/03/2013 04:20:03 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
r652139 r662836 16 16 $HTTP_RAW_POST_DATA = file_get_contents( 'php://input' ); 17 17 $data = base64_decode( $HTTP_RAW_POST_DATA ); 18 18 19 if ( $data ) { 19 20 $unserialized_data = unserialize( $data ); 20 $iwp_action = $unserialized_data['iwp_action']; 21 } 21 if ( isset( $unserialized_data['iwp_action'] ) ) { 22 $iwp_action = $unserialized_data['iwp_action']; 23 } 24 } 25 22 26 if ( $iwp_action ) { 23 27 $isIWP = true;
Note: See TracChangeset
for help on using the changeset viewer.