Make WordPress Core

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

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

     
    350350 *
    351351 * @since MU (3.0.0)
    352352 *
     353 * @global wpdb     $wpdb       WordPress database abstraction object.
     354 * @global string   $blogname   The site name.
     355 * @global string   $blog_title The site title.
     356 * @global WP_Error $errors     A WP_Error object possibly containing 'blogname' or 'blog_title' errors.
     357 * @global string   $domain     The domain URL.
     358 * @global string   $path       The site root path.
     359 *
    353360 * @return null|bool True if site signup was validated, false if error.
    354361 *                   The function halts all execution if the user is not logged in.
    355362 */
     
    492499 *
    493500 * @since MU (3.0.0)
    494501 *
     502 * @global string $active_signup String that returns registration type. The value can be
     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.