Changeset 52606 for trunk/src/wp-includes/user.php
- Timestamp:
- 01/19/2022 01:16:44 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r52605 r52606 2942 2942 * Filters whether to send the retrieve password email. 2943 2943 * 2944 * Return false to disable sending the email. 2945 * 2944 2946 * @since 6.0.0 2945 2947 * 2946 * @param bool $send False to prevent sending. Default true.2948 * @param bool $send Whether to send the email. 2947 2949 */ 2948 2950 if ( ! apply_filters( 'send_retrieve_password_email', true ) ) { … … 3044 3046 * @since 6.0.0 3045 3047 * 3046 * @param array $ defaults{3048 * @param array $notification_email { 3047 3049 * The default notification email arguments. Used to build wp_mail(). 3048 3050 * … … 3060 3062 * } 3061 3063 */ 3062 $notification_email = apply_filters( 'retrieve_password_notification_email', $ defaults, $data );3064 $notification_email = apply_filters( 'retrieve_password_notification_email', $notification_email, $data ); 3063 3065 3064 3066 if ( $switched_locale ) {
Note: See TracChangeset
for help on using the changeset viewer.