Skip to content

Commit 87f99b4

Browse files
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. git-svn-id: https://develop.svn.wordpress.org/trunk@59560 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 70ecc6b commit 87f99b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wp-includes/ms-functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -941,7 +941,7 @@ function wpmu_signup_blog_notification( $domain, $path, $title, $user_login, $us
941941
}
942942

943943
// Send email with activation link.
944-
if ( ! is_subdomain_install() || get_current_network_id() != 1 ) {
944+
if ( ! is_subdomain_install() || get_current_network_id() !== 1 ) {
945945
$activate_url = network_site_url( "wp-activate.php?key=$key" );
946946
} else {
947947
$activate_url = "http://{$domain}{$path}wp-activate.php?key=$key"; // @todo Use *_url() API.

0 commit comments

Comments
 (0)