Make WordPress Core

Changeset 33486


Ignore:
Timestamp:
07/29/2015 02:51:52 PM (9 years ago)
Author:
markjaquith
Message:

Change send_pass_change_email to send_password_change_email (better name).

see #32430

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/user.php

    r33248 r33486  
    21682168         *
    21692169         */
    2170         $send_pass_change_email = apply_filters( 'send_pass_change_email', true, $user, $userdata );
     2170        $send_password_change_email = apply_filters( 'send_password_change_email', true, $user, $userdata );
    21712171    }
    21722172
     
    21972197        $blog_name = wp_specialchars_decode( get_option( 'blogname' ) );
    21982198
    2199         if ( ! empty( $send_pass_change_email ) ) {
     2199        if ( ! empty( $send_password_change_email ) ) {
    22002200
    22012201            /* translators: Do not translate USERNAME, ADMIN_EMAIL, EMAIL, SITENAME, SITEURL: those are placeholders. */
Note: See TracChangeset for help on using the changeset viewer.