Changeset 41209 for trunk/src/wp-includes/user.php
- Timestamp:
- 08/02/2017 08:42:17 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r41200 r41209 2592 2592 2593 2593 /** 2594 * Send s an email when an email address change is requested.2594 * Send a confirmation request email when a change of user email address is attempted. 2595 2595 * 2596 2596 * @since 3.0.0 … … 2661 2661 2662 2662 /** 2663 * Filters the email text sent when a user changes emails.2663 * Filters the text of the email sent when a change of user email address is attempted. 2664 2664 * 2665 2665 * The following strings have a special meaning and will get replaced dynamically: … … 2674 2674 * 2675 2675 * @param string $email_text Text in the email. 2676 * @param string $new_user_email New user email that the current user has changed to. 2676 * @param array $new_user_email { 2677 * Data relating to the new user email address. 2678 * 2679 * @type string $hash The secure hash used in the confirmation link URL. 2680 * @type string $newemail The proposed new email address. 2681 * } 2677 2682 */ 2678 2683 $content = apply_filters( 'new_user_email_content', $email_text, $new_user_email ); … … 2691 2696 2692 2697 /** 2693 * Adds an admin notice alerting the user to check for confirmation email2698 * Adds an admin notice alerting the user to check for confirmation request email 2694 2699 * after email address change. 2695 2700 *
Note: See TracChangeset
for help on using the changeset viewer.