diff --git src/wp-includes/user.php src/wp-includes/user.php
index 566702f..c4494f5 100644
|
|
|
function _wp_privacy_send_request_confirmation_notification( $request_id ) { |
| 2973 | 2973 | return; |
| 2974 | 2974 | } |
| 2975 | 2975 | |
| | 2976 | $action_description = wp_user_request_action_description( $request_data->action_name ); |
| | 2977 | |
| 2976 | 2978 | $subject = sprintf( |
| 2977 | | /* translators: %s Site name. */ |
| 2978 | | __( '[%s] Action Confirmed' ), |
| 2979 | | wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ) |
| | 2979 | /* translators: 1: Site name. 2: Name of the action. */ |
| | 2980 | __( '[%1$s] Action Confirmed: %2$s' ), |
| | 2981 | wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ), |
| | 2982 | $action_description |
| 2980 | 2983 | ); |
| 2981 | 2984 | |
| 2982 | 2985 | $manage_url = add_query_arg( 'page', $request_data->action_name, admin_url( 'tools.php' ) ); |
| … |
… |
function _wp_privacy_send_request_confirmation_notification( $request_id ) { |
| 3000 | 3003 | $email_data = array( |
| 3001 | 3004 | 'request' => $request_data, |
| 3002 | 3005 | 'user_email' => $request_data->email, |
| 3003 | | 'description' => wp_user_request_action_description( $request_data->action_name ), |
| | 3006 | 'description' => $action_description, |
| 3004 | 3007 | 'manage_url' => $manage_url, |
| 3005 | 3008 | 'sitename' => get_option( 'blogname' ), |
| 3006 | 3009 | 'siteurl' => home_url(), |