mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-23 23:30:53 +00:00
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:
parent
fe1018b90d
commit
e85bca16d3
@ -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.
|
||||
|
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user