Make WordPress Core


Ignore:
Timestamp:
04/08/2019 06:16:41 AM (7 years ago)
Author:
pento
Message:

Text Changes: Tweak the wording of email notification subjects.

This change brings more coherence between the subject lines of the various emails WordPress will send.

Props ramiy, pento.
Fixes #37940.

File:
1 edited

Legend:

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

    r45104 r45137  
    26462646    $content      = str_replace( '###SITEURL###', network_home_url(), $content );
    26472647
    2648     wp_mail( $value, sprintf( __( '[%s] New Network Admin Email Address' ), wp_specialchars_decode( get_site_option( 'site_name' ), ENT_QUOTES ) ), $content );
     2648    wp_mail( $value, sprintf( __( '[%s] Network Admin Email Change Request' ), wp_specialchars_decode( get_site_option( 'site_name' ), ENT_QUOTES ) ), $content );
    26492649
    26502650    if ( $switched_locale ) {
     
    27052705        'to'      => $old_email,
    27062706        /* translators: Network admin email change notification email subject. %s: Network title */
    2707         'subject' => __( '[%s] Notice of Network Admin Email Change' ),
     2707        'subject' => __( '[%s] Network Admin Email Changed' ),
    27082708        'message' => $email_change_text,
    27092709        'headers' => '',
Note: See TracChangeset for help on using the changeset viewer.