Make WordPress Core


Ignore:
Timestamp:
09/30/2020 09:52:27 PM (5 years ago)
Author:
johnbillion
Message:

Docs: Various docblock improvements related to user and site signup functionality.

See #50768

File:
1 edited

Legend:

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

    r48359 r49078  
    324324
    325325/**
    326  * Outputs the Javascript to handle the form shaking.
     326 * Outputs the Javascript to handle the form shaking on the login page.
    327327 *
    328328 * @since 3.0.0
     
    337337
    338338/**
    339  * Outputs the viewport meta tag.
     339 * Outputs the viewport meta tag for the login page.
    340340 *
    341341 * @since 3.7.0
     
    348348
    349349/**
    350  * Handles sending password retrieval email to user.
     350 * Handles sending a password retrieval email to a user.
    351351 *
    352352 * @since 2.5.0
    353353 *
    354  * @return bool|WP_Error True: when finish. WP_Error on error
     354 * @return true|WP_Error True when finished, WP_Error object on error.
    355355 */
    356356function retrieve_password() {
     
    423423        /*
    424424         * The blogname option is escaped with esc_html on the way into the database
    425          * in sanitize_option we want to reverse this for the plain text arena of emails.
     425         * in sanitize_option. We want to reverse this for the plain text arena of emails.
    426426         */
    427427        $site_name = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );
     
    446446     * @since 4.4.0 Added the `$user_login` and `$user_data` parameters.
    447447     *
    448      * @param string  $title      Default email title.
     448     * @param string  $title      Email subject.
    449449     * @param string  $user_login The username for the user.
    450450     * @param WP_User $user_data  WP_User object.
     
    460460     * @since 4.1.0 Added `$user_login` and `$user_data` parameters.
    461461     *
    462      * @param string  $message    Default mail message.
     462     * @param string  $message    Email message.
    463463     * @param string  $key        The activation key.
    464464     * @param string  $user_login The username for the user.
Note: See TracChangeset for help on using the changeset viewer.