Changeset 43375 for trunk/src/wp-includes/user.php
- Timestamp:
- 06/19/2018 08:17:44 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r43373 r43375 2974 2974 } 2975 2975 2976 $manage_url = add_query_arg( 'page', $request_data->action_name, admin_url( 'tools.php' ) ); 2976 $manage_url = add_query_arg( 'page', $request_data->action_name, admin_url( 'tools.php' ) ); 2977 $action_description = wp_user_request_action_description( $request_data->action_name ); 2977 2978 2978 2979 /** … … 2995 2996 'request' => $request_data, 2996 2997 'user_email' => $request_data->email, 2997 'description' => wp_user_request_action_description( $request_data->action_name ),2998 'description' => $action_description, 2998 2999 'manage_url' => $manage_url, 2999 3000 'sitename' => get_option( 'blogname' ), … … 3058 3059 3059 3060 $subject = sprintf( 3060 /* translators: %s Site name. */ 3061 __( '[%s] Action Confirmed' ), 3062 $blogname 3061 /* translators: 1: Site name. 2: Name of the confirmed action. */ 3062 __( '[%1$s] Action Confirmed: %2$s' ), 3063 $blogname, 3064 $action_description 3063 3065 ); 3064 3066
Note: See TracChangeset
for help on using the changeset viewer.