Ticket #43968: 43968-without-filter.diff
File 43968-without-filter.diff, 869 bytes (added by , 7 years ago) |
---|
-
src/wp-includes/user.php
3141 3141 $content = str_replace( '###SITENAME###', wp_specialchars_decode( $email_data['sitename'], ENT_QUOTES ), $content ); 3142 3142 $content = str_replace( '###SITEURL###', esc_url_raw( $email_data['siteurl'] ), $content ); 3143 3143 3144 /* translators: %s Site name.*/3145 return wp_mail( $email_data['email'], sprintf( __( '[% s] Confirm Action' ), wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES )), $content );3144 /* translators: 1 Site name 2: Request type */ 3145 return wp_mail( $email_data['email'], sprintf( __( '[%1$s] Confirm Action: %2$s' ), wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ), $email_data['description'] ), $content ); 3146 3146 } 3147 3147 3148 3148 /**