Login and Registration: Pass the `$errors` parameter to the `lost_password` action.

Props sebakurzyn

Fixes #44512

Built from https://develop.svn.wordpress.org/trunk@43542


git-svn-id: http://core.svn.wordpress.org/trunk@43371 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2018-07-28 13:02:25 +00:00
parent 7063c45879
commit 58509ba12f
2 changed files with 6 additions and 2 deletions

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.0-alpha-43541';
$wp_version = '5.0-alpha-43542';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.

View File

@ -588,8 +588,12 @@ switch ( $action ) {
* Fires before the lost password form.
*
* @since 1.5.1
* @since 5.0.0 Added the `$errors` parameter.
*
* @param WP_Error $errors A `WP_Error` object containing any errors generated by using invalid
* credentials. Note that the error object may not contain any errors.
*/
do_action( 'lost_password' );
do_action( 'lost_password', $errors );
login_header( __( 'Lost Password' ), '<p class="message">' . __( 'Please enter your username or email address. You will receive a link to create a new password via email.' ) . '</p>', $errors );