Make WordPress Core

Ticket #41566: wp-signup.php.2.diff

File wp-signup.php.2.diff, 1.0 KB (added by mt8.biz, 7 years ago)

some fix. thanks @westonruter

  • wp-signup.php

     
    350350 *
    351351 * @since MU (3.0.0)
    352352 *
     353 * @global string   $blogname   The site name.
     354 * @global string   $blog_title The site title.
     355 * @global WP_Error $errors     A WP_Error object possibly containing 'blogname' or 'blog_title' errors.
     356 * @global string   $domain     The domain URL.
     357 * @global string   $path       The site root path.
     358 *
    353359 * @return null|bool True if site signup was validated, false if error.
    354360 *                   The function halts all execution if the user is not logged in.
    355361 */
     
    492498 *
    493499 * @since MU (3.0.0)
    494500 *
     501 * @global string $active_signup String that returns registration type. The value can be
     502 *                              'all', 'none', 'blog', or 'user'.
     503 *
    495504 * @param string          $user_name  The username.
    496505 * @param string          $user_email The user's email.
    497506 * @param WP_Error|string $errors     A WP_Error object containing existing errors. Defaults to empty string.