diff --git a/src/wp-signup.php b/src/wp-signup.php
index cbc4ddb402..238f405685 100644
a
|
b
|
function show_blog_form( $blogname = '', $blog_title = '', $errors = '' ) { |
224 | 224 | } |
225 | 225 | |
226 | 226 | /** |
227 | | * Validate the new site signup |
| 227 | * Validates the new site signup |
228 | 228 | * |
229 | 229 | * @since MU (3.0.0) |
230 | 230 | * |
… |
… |
function show_user_form( $user_name = '', $user_email = '', $errors = '' ) { |
288 | 288 | } |
289 | 289 | |
290 | 290 | /** |
291 | | * Validate user signup name and email |
| 291 | * Validates user signup name and email |
292 | 292 | * |
293 | 293 | * @since MU (3.0.0) |
294 | 294 | * |
… |
… |
function signup_another_blog( $blogname = '', $blog_title = '', $errors = '' ) { |
394 | 394 | } |
395 | 395 | |
396 | 396 | /** |
397 | | * Validate a new site signup for an existing user. |
| 397 | * Validates a new site signup for an existing user. |
| 398 | * |
| 399 | * @since MU (3.0.0) |
398 | 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. |
… |
… |
function signup_another_blog( $blogname = '', $blog_title = '', $errors = '' ) { |
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 | */ |
… |
… |
function validate_another_blog_signup() { |
486 | 486 | } |
487 | 487 | |
488 | 488 | /** |
489 | | * Confirm a new site signup. |
| 489 | * Confirms a new site signup. |
490 | 490 | * |
491 | 491 | * @since MU (3.0.0) |
492 | 492 | * @since 4.4.0 Added the `$blog_id` parameter. |
… |
… |
function confirm_another_blog_signup( $domain, $path, $blog_title, $user_name, $ |
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. |
… |
… |
function signup_user( $user_name = '', $user_email = '', $errors = '' ) { |
626 | 629 | } |
627 | 630 | |
628 | 631 | /** |
629 | | * Validate the new user signup |
| 632 | * Validates the new user signup |
630 | 633 | * |
631 | 634 | * @since MU (3.0.0) |
632 | 635 | * |
… |
… |
function signup_blog( $user_name = '', $user_email = '', $blogname = '', $blog_t |
750 | 753 | } |
751 | 754 | |
752 | 755 | /** |
753 | | * Validate new site signup |
| 756 | * Validates new site signup |
754 | 757 | * |
755 | 758 | * @since MU (3.0.0) |
756 | 759 | * |