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:
Sergey Biryukov 2018-09-03 21:43:13 +00:00
parent c41c128fda
commit 811eef33a3
1 changed files with 1 additions and 1 deletions

View File

@ -3545,7 +3545,7 @@ function wp_validate_user_request_key( $request_id, $key ) {
}
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 ) ) {