Require a non-empty $nonce value in wp_verify_nonce().
props ocean90. fixes #29217. Built from https://develop.svn.wordpress.org/trunk@29620 git-svn-id: http://core.svn.wordpress.org/trunk@29394 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
67b0e365e2
commit
3951d9689c
|
@ -1707,6 +1707,10 @@ function wp_verify_nonce($nonce, $action = -1) {
|
|||
$uid = apply_filters( 'nonce_user_logged_out', $uid, $action );
|
||||
}
|
||||
|
||||
if ( empty( $nonce ) ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$token = wp_get_session_token();
|
||||
$i = wp_nonce_tick();
|
||||
|
||||
|
|
Loading…
Reference in New Issue