Changeset 55942 for trunk/src/wp-includes/ms-functions.php
- Timestamp:
- 06/19/2023 06:26:01 PM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-functions.php
r55657 r55942 605 605 * @global string $domain 606 606 * 607 * @param string $blogname The blogname provided by the user. Must be unique.608 * @param string $blog_title The blogtitle provided by the user.607 * @param string $blogname The site name provided by the user. Must be unique. 608 * @param string $blog_title The site title provided by the user. 609 609 * @param WP_User|string $user Optional. The user object to check against the new site name. 610 610 * Default empty string. 611 611 * @return array { 612 * Array of domain, path, blog name, blogtitle, user and error messages.612 * Array of domain, path, site name, site title, user and error messages. 613 613 * 614 614 * @type string $domain Domain for the site. … … 753 753 * 754 754 * @param array $result { 755 * Array of domain, path, blog name, blogtitle, user and error messages.755 * Array of domain, path, site name, site title, user and error messages. 756 756 * 757 757 * @type string $domain Domain for the site. 758 758 * @type string $path Path for the site. Used in subdirectory installations. 759 759 * @type string $blogname The unique site name (slug). 760 * @type string $blog_title Blogtitle.760 * @type string $blog_title Site title. 761 761 * @type string|WP_User $user By default, an empty string. A user object if provided. 762 762 * @type WP_Error $errors WP_Error containing any errors found. … … 2388 2388 function filter_SSL( $url ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid 2389 2389 if ( ! is_string( $url ) ) { 2390 return get_bloginfo( 'url' ); // Return home blogURL with proper scheme.2390 return get_bloginfo( 'url' ); // Return home site URL with proper scheme. 2391 2391 } 2392 2392
Note: See TracChangeset
for help on using the changeset viewer.