Make WordPress Core

Changeset 59560


Ignore:
Timestamp:
12/24/2024 10:22:49 PM (15 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use strict comparison in wpmu_signup_blog_notification().

Follow-up to mu:1970.

Props debarghyabanerjee.
See #62283.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/ms-functions.php

    r59557 r59560  
    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 {
Note: See TracChangeset for help on using the changeset viewer.