Make WordPress Core

Ticket #43748: 43748.1.patch

File 43748.1.patch, 619 bytes (added by macbookandrew, 7 years ago)

New actionr

  • src/wp-admin/includes/user.php

     
    222222
    223223        if ( $update ) {
    224224                $user_id = wp_update_user( $user );
     225
     226                /**
     227                 * Fires after an exsting user has been updated.
     228                 *
     229                 * @since 4.9.5
     230                 *
     231                 * @param int    $user_id ID of the updated user.
     232                 */
     233                do_action( 'edit_user_updated_user', $user_id );
    225234        } else {
    226235                $user_id = wp_insert_user( $user );
    227236                $notify  = isset( $_POST['send_user_notification'] ) ? 'both' : 'admin';