Make WordPress Core

Changeset 27149


Ignore:
Timestamp:
02/09/2014 09:07:01 PM (11 years ago)
Author:
DrewAPicture
Message:

Improve inline documentation for wp_new_user_notification().

Props antorome for the initial patch.
Fixes #26703.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/pluggable.php

    r27116 r27149  
    12741274if ( !function_exists('wp_new_user_notification') ) :
    12751275/**
    1276  * Notify the blog admin of a new user, normally via email.
     1276 * Email login credentials to a newly-registered user.
     1277 *
     1278 * A new user registration notification is also sent to admin email.
    12771279 *
    12781280 * @since 2.0.0
    12791281 *
    1280  * @param int $user_id User ID
    1281  * @param string $plaintext_pass Optional. The user's plaintext password
     1282 * @param int    $user_id        User ID.
     1283 * @param string $plaintext_pass Optional. The user's plaintext password. Default empty.
    12821284 */
    12831285function wp_new_user_notification($user_id, $plaintext_pass = '') {
Note: See TracChangeset for help on using the changeset viewer.