You appear to be a bot. Output may be restricted
Description
Verify the nonce field
Usage
$integer = bw_verify_nonce( $action, $name );
Parameters
- $action
- ( string ) required – the action passed on the call to wp_nonce_field()
- $name
- ( string ) required – the name passed on the call to wp_nonce_field()
Returns
integer- or 2 if verified, false if not
Source
File name: oik-bwtrace/libs/bobbforms.phpLines:
1 to 6 of 6
function bw_verify_nonce( $action, $name ) { $nonce_field = bw_array_get( $_REQUEST, $name, null ); $verified = wp_verify_nonce( $nonce_field, $action ); bw_trace2( $verified, "wp_verify_nonce?" ); return( $verified ); }View on GitHub View on Trac