Ticket #41566: 41566.diff
File 41566.diff, 1.2 KB (added by , 3 years ago) |
---|
-
src/wp-signup.php
396 396 /** 397 397 * Validate a new site signup for an existing user. 398 398 * 399 * @since MU (3.0.0) 400 * 399 401 * @global string $blogname The new site's subdomain or directory name. 400 402 * @global string $blog_title The new site's title. 401 403 * @global WP_Error $errors Existing errors in the global scope. … … 402 404 * @global string $domain The new site's domain. 403 405 * @global string $path The new site's path. 404 406 * 405 * @since MU (3.0.0)406 *407 407 * @return null|bool True if site signup was validated, false if error. 408 408 * The function halts all execution if the user is not logged in. 409 409 */ … … 553 553 * 554 554 * @since MU (3.0.0) 555 555 * 556 * @global string $active_signup String that returns registration type. The value can be 557 * 'all', 'none', 'blog', or 'user'. 558 * 556 559 * @param string $user_name The username. 557 560 * @param string $user_email The user's email. 558 561 * @param WP_Error|string $errors A WP_Error object containing existing errors. Defaults to empty string.