Changeset 46696 for trunk/src/wp-signup.php
- Timestamp:
- 11/11/2019 02:41:15 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-signup.php
r46684 r46696 96 96 * @param string $blogname The new site name. 97 97 * @param string $blog_title The new site title. 98 * @param WP_Error|string$errors A WP_Error object containing existing errors. Defaults to empty string.98 * @param string|WP_Error $errors A WP_Error object containing existing errors. Defaults to empty string. 99 99 */ 100 100 function show_blog_form( $blogname = '', $blog_title = '', $errors = '' ) { … … 247 247 * @param string $user_name The entered username. 248 248 * @param string $user_email The entered email address. 249 * @param WP_Error|string$errors A WP_Error object containing existing errors. Defaults to empty string.249 * @param string|WP_Error $errors A WP_Error object containing existing errors. Defaults to empty string. 250 250 */ 251 251 function show_user_form( $user_name = '', $user_email = '', $errors = '' ) { … … 305 305 * @param string $blogname The new site name 306 306 * @param string $blog_title The new site title. 307 * @param WP_Error|string$errors A WP_Error object containing existing errors. Defaults to empty string.307 * @param string|WP_Error $errors A WP_Error object containing existing errors. Defaults to empty string. 308 308 */ 309 309 function signup_another_blog( $blogname = '', $blog_title = '', $errors = '' ) { … … 554 554 * @param string $user_name The username. 555 555 * @param string $user_email The user's email. 556 * @param WP_Error|string$errors A WP_Error object containing existing errors. Defaults to empty string.556 * @param string|WP_Error $errors A WP_Error object containing existing errors. Defaults to empty string. 557 557 */ 558 558 function signup_user( $user_name = '', $user_email = '', $errors = '' ) { … … 692 692 * @param string $blogname The site name. 693 693 * @param string $blog_title The site title. 694 * @param WP_Error|string$errors A WP_Error object containing existing errors. Defaults to empty string.694 * @param string|WP_Error $errors A WP_Error object containing existing errors. Defaults to empty string. 695 695 */ 696 696 function signup_blog( $user_name = '', $user_email = '', $blogname = '', $blog_title = '', $errors = '' ) {
Note: See TracChangeset
for help on using the changeset viewer.