Skip to content

Commit 5e2ef5e

Browse files
committed
fix for multisite function
1 parent 44d9d03 commit 5e2ef5e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/wp-includes/ms-functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2870,7 +2870,7 @@ function wp_network_admin_email_change_notification( $option_name, $new_email, $
28702870
$send = true;
28712871

28722872
// Don't send the notification to the default 'admin_email' value or an empty value.
2873-
if ( '[email protected]' === $old_email || empty( $old_email ) ) {
2873+
if ( empty( $old_email ) || '[email protected]' === $old_email ) {
28742874
$send = false;
28752875
}
28762876

0 commit comments

Comments
 (0)