Coding Standards: Use strict comparison in wpmu_signup_blog_notification().

Follow-up to [https://mu.trac.wordpress.org/changeset/1970 mu:1970].

Props debarghyabanerjee.
See #62283.
Built from https://develop.svn.wordpress.org/trunk@59560


git-svn-id: http://core.svn.wordpress.org/trunk@58946 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2024-12-24 22:24:27 +00:00
parent fe1018b90d
commit e85bca16d3
2 changed files with 2 additions and 2 deletions

View File

@ -941,7 +941,7 @@ function wpmu_signup_blog_notification( $domain, $path, $title, $user_login, $us
}
// Send email with activation link.
if ( ! is_subdomain_install() || get_current_network_id() != 1 ) {
if ( ! is_subdomain_install() || get_current_network_id() !== 1 ) {
$activate_url = network_site_url( "wp-activate.php?key=$key" );
} else {
$activate_url = "http://{$domain}{$path}wp-activate.php?key=$key"; // @todo Use *_url() API.

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.8-alpha-59559';
$wp_version = '6.8-alpha-59560';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.