Privacy: When clicking a confirmation link for a privacy request, return a WP_Error
object if the link has expired.
Returning a string caused a success message to be displayed instead of the correct error message. Props desrosj. Fixes #44685. git-svn-id: https://develop.svn.wordpress.org/trunk@43623 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c41c128fda
commit
811eef33a3
@ -3545,7 +3545,7 @@ function wp_validate_user_request_key( $request_id, $key ) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ( ! in_array( $request->status, array( 'request-pending', 'request-failed' ), true ) ) {
|
if ( ! in_array( $request->status, array( 'request-pending', 'request-failed' ), true ) ) {
|
||||||
return __( 'This link has expired.' );
|
return new WP_Error( 'expired_link', __( 'This link has expired.' ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( empty( $key ) ) {
|
if ( empty( $key ) ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user