Index: src/wp-includes/user.php =================================================================== --- src/wp-includes/user.php (revision 43331) +++ src/wp-includes/user.php (working copy) @@ -3155,6 +3155,7 @@ * ###SITEURL### The URL to the site. * * @since 4.9.6 + * @since 4.9.7 Renamed filter from user_confirmed_action_email_content to user_erasure_fulfillment_email_content. * * @param string $email_text Text in the email. * @param array $email_data { @@ -3169,7 +3170,7 @@ * @type string $siteurl The site URL sending the mail. * } */ - $content = apply_filters( 'user_confirmed_action_email_content', $email_text, $email_data ); + $content = apply_filters( 'user_erasure_fulfillment_email_content', $email_text, $email_data ); $content = str_replace( '###SITENAME###', wp_specialchars_decode( $email_data['sitename'], ENT_QUOTES ), $content ); $content = str_replace( '###PRIVACY_POLICY_URL###', $email_data['privacy_policy_url'], $content );