Make WordPress Core

Changeset 27068


Ignore:
Timestamp:
02/02/2014 07:51:03 AM (11 years ago)
Author:
nacin
Message:

New resetpass_form hook in wp-login.php.

props romaimperator.
fixes #21044.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-login.php

    r26583 r27068  
    618618
    619619    <br class="clear" />
     620
     621    <?php
     622    /**
     623     * Fires following the 'Strength indicator' meter in the user password reset form.
     624     *
     625     * @since 3.9.0
     626     *
     627     * @param WP_User $user User undergoing the password reset.
     628     */
     629    do_action( 'resetpass_form', $user );
     630    ?>
    620631    <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e('Reset Password'); ?>" /></p>
    621632</form>
Note: See TracChangeset for help on using the changeset viewer.