Ticket #34281: 34281.10.diff
File 34281.10.diff, 26.0 KB (added by , 4 years ago) |
---|
-
src/js/_enqueues/admin/user-profile.js
diff --git src/js/_enqueues/admin/user-profile.js src/js/_enqueues/admin/user-profile.js index df17620f48..25252bda18 100644
91 91 }); 92 92 } 93 93 94 /** 95 * Handle the password reset button. Sets up an ajax callback to trigger sending 96 * a password reset email. 97 */ 98 function bindPasswordRestLink() { 99 $( '#generate-reset-link' ).on( 'click', function() { 100 var $this = $(this), 101 data = { 102 'user_id': userProfileL10n.user_id, // The user to send a reset to. 103 'nonce': userProfileL10n.nonce // Nonce to validate the action. 104 }; 105 106 // Remove any previous error messages. 107 $this.parent().find( '.notice-error' ).remove(); 108 109 // Send the reset request. 110 var resetAction = wp.ajax.post( 'send-password-reset', data ); 111 112 // Handle reset success. 113 resetAction.done( function( response ) { 114 addInlineNotice( $this, true, response ); 115 } ); 116 117 // Handle reset failure. 118 resetAction.fail( function( response ) { 119 addInlineNotice( $this, false, response ); 120 } ); 121 122 }); 123 124 } 125 126 /** 127 * Helper function to insert an inline notice of success or failure. 128 * 129 * @param {jQuery Object} $this The button element: the message will be inserted 130 * above this button 131 * @param {bool} success Whether the message is a success message. 132 * @param {string} message The message to insert. 133 */ 134 function addInlineNotice( $this, success, message ) { 135 var resultDiv = $( '<div />' ); 136 137 // Set up the notice div. 138 resultDiv.addClass( 'notice inline' ); 139 140 // Add a class indicating success or failure. 141 resultDiv.addClass( 'notice-' + ( success ? 'success' : 'error' ) ); 142 143 // Add the message, wrapping in a p tag, with a fadein to highlight each message. 144 resultDiv.text( $( $.parseHTML( message ) ).text() ).wrapInner( '<p />'); 145 146 // Disable the button when the callback has succeeded. 147 $this.prop( 'disabled', success ); 148 149 // Remove any previous notices. 150 $this.siblings( '.notice' ).remove(); 151 152 // Insert the notice. 153 $this.before( resultDiv ); 154 } 155 94 156 function bindPasswordForm() { 95 157 var $generateButton, 96 158 $cancelButton; … … 369 431 }); 370 432 371 433 bindPasswordForm(); 434 bindPasswordRestLink(); 372 435 }); 373 436 374 437 $( '#destroy-sessions' ).on( 'click', function( e ) { -
src/wp-admin/admin-ajax.php
diff --git src/wp-admin/admin-ajax.php src/wp-admin/admin-ajax.php index 144facf7fe..30e9a414b5 100644
$core_actions_post = array( 140 140 'health-check-loopback-requests', 141 141 'health-check-get-sizes', 142 142 'toggle-auto-updates', 143 'send-password-reset', 143 144 ); 144 145 145 146 // Deprecated. -
src/wp-admin/includes/ajax-actions.php
diff --git src/wp-admin/includes/ajax-actions.php src/wp-admin/includes/ajax-actions.php index 6ff2d2d9fd..1a9f1c65c6 100644
function wp_ajax_toggle_auto_updates() { 5398 5398 5399 5399 wp_send_json_success(); 5400 5400 } 5401 5402 /** 5403 * Ajax handler sends a password reset link. 5404 * 5405 * @since 5.4.0 5406 */ 5407 function wp_ajax_send_password_reset() { 5408 5409 // Validate the nonce for this action. 5410 $user_id = isset( $_POST['user_id'] ) ? (int) $_POST['user_id'] : 0; 5411 check_ajax_referer( 'reset-password-for-' . $user_id, 'nonce' ); 5412 5413 // Verify user capabilities. 5414 if ( ! current_user_can( 'edit_user', $user_id ) ) { 5415 wp_send_json_error( __( 'Cannot send password reset, permission denied.' ) ); 5416 } 5417 5418 // Send the password reset link. 5419 $user = get_userdata( $user_id ); 5420 $results = retrieve_password( $user->user_login ); 5421 5422 if ( true === $results ) { 5423 wp_send_json_success( 5424 /* translators: 1: User's display name. */ 5425 sprintf( __( 'A password reset link was emailed to %s.' ), $user->display_name ) 5426 ); 5427 } else { 5428 wp_send_json_error( $results ); 5429 } 5430 } 5431 No newline at end of file -
src/wp-admin/includes/class-wp-users-list-table.php
diff --git src/wp-admin/includes/class-wp-users-list-table.php src/wp-admin/includes/class-wp-users-list-table.php index 7e1e79f500..dff630dc05 100644
class WP_Users_List_Table extends WP_List_Table { 274 274 } 275 275 } 276 276 277 // Add a password reset link to the bulk actions dropdown. 278 if ( current_user_can( 'edit_users' ) ) { 279 $actions['resetpassword'] = __( 'Send password reset' ); 280 } 281 277 282 return $actions; 278 283 } 279 284 … … class WP_Users_List_Table extends WP_List_Table { 450 455 $edit = "<strong>{$user_object->user_login}{$super_admin}</strong><br />"; 451 456 } 452 457 453 if ( ! is_multisite() && get_current_user_id() != $user_object->ID && current_user_can( 'delete_user', $user_object->ID ) ) {458 if ( ! is_multisite() && get_current_user_id() !== $user_object->ID && current_user_can( 'delete_user', $user_object->ID ) ) { 454 459 $actions['delete'] = "<a class='submitdelete' href='" . wp_nonce_url( "users.php?action=delete&user=$user_object->ID", 'bulk-users' ) . "'>" . __( 'Delete' ) . '</a>'; 455 460 } 456 461 if ( is_multisite() && current_user_can( 'remove_user', $user_object->ID ) ) { … … class WP_Users_List_Table extends WP_List_Table { 469 474 ); 470 475 } 471 476 477 // Add a link to send the user a reset password link by email. 478 if ( get_current_user_id() !== $user_object->ID && current_user_can( 'edit_user', $user_object->ID ) ) { 479 $actions['resetpassword'] = "<a class='resetpassword' href='" . wp_nonce_url( "users.php?action=resetpassword&users=$user_object->ID", 'bulk-users' ) . "'>" . __( 'Send password reset' ) . '</a>'; 480 } 481 472 482 /** 473 483 * Filters the action links displayed under each user in the Users list table. 474 484 * -
src/wp-admin/user-edit.php
diff --git src/wp-admin/user-edit.php src/wp-admin/user-edit.php index b09f14fac5..2c0c7b0a32 100644
wp_reset_vars( array( 'action', 'user_id', 'wp_http_referer' ) ); 14 14 $user_id = (int) $user_id; 15 15 $current_user = wp_get_current_user(); 16 16 if ( ! defined( 'IS_PROFILE_PAGE' ) ) { 17 define( 'IS_PROFILE_PAGE', ( $user_id == $current_user->ID ) );17 define( 'IS_PROFILE_PAGE', ( $user_id === $current_user->ID ) ); 18 18 } 19 19 20 20 if ( ! $user_id && IS_PROFILE_PAGE ) { … … $user_can_edit = current_user_can( 'edit_posts' ) || current_user_can( 'edit_pag 91 91 */ 92 92 if ( is_multisite() 93 93 && ! current_user_can( 'manage_network_users' ) 94 && $user_id != $current_user->ID94 && $user_id !== $current_user->ID 95 95 && ! apply_filters( 'enable_edit_any_user_configuration', true ) 96 96 ) { 97 97 wp_die( __( 'Sorry, you are not allowed to edit this user.' ) ); … … switch ( $action ) { 164 164 $errors = edit_user( $user_id ); 165 165 166 166 // Grant or revoke super admin status if requested. 167 if ( is_multisite() && is_network_admin() && ! IS_PROFILE_PAGE && current_user_can( 'manage_network_options' ) && ! isset( $super_admins ) && empty( $_POST['super_admin'] ) == is_super_admin( $user_id ) ) {167 if ( is_multisite() && is_network_admin() && ! IS_PROFILE_PAGE && current_user_can( 'manage_network_options' ) && ! isset( $super_admins ) && empty( $_POST['super_admin'] ) === is_super_admin( $user_id ) ) { 168 168 empty( $_POST['super_admin'] ) ? revoke_super_admin( $user_id ) : grant_super_admin( $user_id ); 169 169 } 170 170 … … endif; 506 506 <th><label for="email"><?php _e( 'Email' ); ?> <span class="description"><?php _e( '(required)' ); ?></span></label></th> 507 507 <td><input type="email" name="email" id="email" aria-describedby="email-description" value="<?php echo esc_attr( $profileuser->user_email ); ?>" class="regular-text ltr" /> 508 508 <?php 509 if ( $profileuser->ID == $current_user->ID ) :509 if ( $profileuser->ID === $current_user->ID ) : 510 510 ?> 511 511 <p class="description" id="email-description"> 512 512 <?php _e( 'If you change this, we will send you an email at your new address to confirm it. <strong>The new address will not become active until confirmed.</strong>' ); ?> … … endif; 515 515 endif; 516 516 517 517 $new_email = get_user_meta( $current_user->ID, '_new_email', true ); 518 if ( $new_email && $new_email['newemail'] != $current_user->user_email && $profileuser->ID== $current_user->ID ) :518 if ( $new_email && $new_email['newemail'] !== $current_user->user_email && $profileuser->ID === $current_user->ID ) : 519 519 ?> 520 520 <div class="updated inline"> 521 521 <p> … … endif; 609 609 </td> 610 610 </tr> 611 611 <?php endif; ?> 612 <?php 613 // Allow admins to send reset password link 614 if ( ! IS_PROFILE_PAGE ) : 615 ?> 616 <tr class="user-sessions-wrap hide-if-no-js"> 617 <th><?php _e( 'Password Reset' ); ?></th> 618 <td> 619 <div class="generate-reset-link"> 620 <button type="button" class="button button-secondary" id="generate-reset-link"> 621 <?php _e( 'Send Reset Link' ); ?> 622 </button> 623 </div> 624 <p class="description"> 625 <?php 626 /* translators: 1: User's display name. */ 627 printf( __( 'Send %s a link to reset their password. This will not change their password, nor will it force a change.' ), esc_html( $profileuser->display_name ) ); 628 ?> 629 </p> 630 </td> 631 </tr> 632 <?php endif; ?> 612 633 613 634 <?php 614 635 /** … … endif; 827 848 $output = ''; 828 849 foreach ( $profileuser->caps as $cap => $value ) { 829 850 if ( ! $wp_roles->is_role( $cap ) ) { 830 if ( '' != $output ) {851 if ( '' !== $output ) { 831 852 $output .= ', '; 832 853 } 833 854 -
src/wp-admin/users.php
diff --git src/wp-admin/users.php src/wp-admin/users.php index e8f006b9f4..95bfe8c75c 100644
switch ( $wp_list_table->current_action() ) { 128 128 } 129 129 130 130 // The new role of the current user must also have the promote_users cap or be a multisite super admin. 131 if ( $id == $current_user->ID && ! $wp_roles->role_objects[ $role ]->has_cap( 'promote_users' )131 if ( $id === $current_user->ID && ! $wp_roles->role_objects[ $role ]->has_cap( 'promote_users' ) 132 132 && ! ( is_multisite() && current_user_can( 'manage_network_users' ) ) ) { 133 133 $update = 'err_admin_role'; 134 134 continue; … … switch ( $wp_list_table->current_action() ) { 183 183 wp_die( __( 'Sorry, you are not allowed to delete that user.' ), 403 ); 184 184 } 185 185 186 if ( $id == $current_user->ID ) {186 if ( $id === $current_user->ID ) { 187 187 $update = 'err_admin_del'; 188 188 continue; 189 189 } … … switch ( $wp_list_table->current_action() ) { 208 208 wp_redirect( $redirect ); 209 209 exit; 210 210 211 case 'resetpassword': 212 check_admin_referer( 'bulk-users' ); 213 if ( ! current_user_can( 'edit_users' ) ) { 214 $errors = new WP_Error( 'edit_users', __( 'You can’t edit users.' ) ); 215 } 216 if ( empty( $_REQUEST['users'] ) ) { 217 wp_redirect( $redirect ); 218 exit(); 219 } 220 $userids = array_map( 'intval', (array) $_REQUEST['users'] ); 221 222 $reset_count = 0; 223 224 foreach ( $userids as $id ) { 225 if ( ! current_user_can( 'edit_user', $id ) ) { 226 wp_die( __( 'You can’t edit that user.' ) ); 227 } 228 229 if ( $id === $current_user->ID ) { 230 $update = 'err_admin_reset'; 231 continue; 232 } 233 234 // Send the password reset link. 235 $user = get_userdata( $id ); 236 if ( retrieve_password( $user->user_login ) ) { 237 ++$reset_count; 238 } 239 } 240 241 $redirect = add_query_arg( 242 array( 243 'reset_count' => $reset_count, 244 'update' => 'resetpassword', 245 ), 246 $redirect 247 ); 248 wp_redirect( $redirect ); 249 exit; 250 211 251 case 'delete': 212 252 if ( is_multisite() ) { 213 253 wp_die( __( 'User deletion is not allowed from this screen.' ), 400 ); … … switch ( $wp_list_table->current_action() ) { 248 288 $users_have_content = (bool) apply_filters( 'users_have_additional_content', false, $userids ); 249 289 250 290 if ( $userids && ! $users_have_content ) { 251 if ( $wpdb->get_var( "SELECT ID FROM {$wpdb->posts} WHERE post_author IN( " . implode( ',', $userids ) . ' ) LIMIT 1' ) ) { 291 if ( $wpdb->get_var( "SELECT ID FROM {$wpdb->posts} WHERE post_author IN( " . implode( ',', $userids ) . ' ) LIMIT 1' ) ) { // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared 252 292 $users_have_content = true; 253 } elseif ( $wpdb->get_var( "SELECT link_id FROM {$wpdb->links} WHERE link_owner IN( " . implode( ',', $userids ) . ' ) LIMIT 1' ) ) { 293 } elseif ( $wpdb->get_var( "SELECT link_id FROM {$wpdb->links} WHERE link_owner IN( " . implode( ',', $userids ) . ' ) LIMIT 1' ) ) { // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared 254 294 $users_have_content = true; 255 295 } 256 296 } … … switch ( $wp_list_table->current_action() ) { 284 324 $go_delete = 0; 285 325 foreach ( $all_userids as $id ) { 286 326 $user = get_userdata( $id ); 287 if ( $id == $current_user->ID ) {327 if ( $id === $current_user->ID ) { 288 328 /* translators: 1: User ID, 2: User login. */ 289 329 echo '<li>' . sprintf( __( 'ID #%1$s: %2$s <strong>The current user will not be deleted.</strong>' ), $id, $user->user_login ) . "</li>\n"; 290 330 } else { … … switch ( $wp_list_table->current_action() ) { 302 342 ?> 303 343 <input type="hidden" name="delete_option" value="delete" /> 304 344 <?php else : ?> 305 <?php if ( 1 == $go_delete ) : ?>345 <?php if ( 1 === $go_delete ) : ?> 306 346 <fieldset><p><legend><?php _e( 'What should be done with content owned by this user?' ); ?></legend></p> 307 347 <?php else : ?> 308 348 <fieldset><p><legend><?php _e( 'What should be done with content owned by these users?' ); ?></legend></p> … … switch ( $wp_list_table->current_action() ) { 478 518 case 'del': 479 519 case 'del_many': 480 520 $delete_count = isset( $_GET['delete_count'] ) ? (int) $_GET['delete_count'] : 0; 481 if ( 1 == $delete_count ) {521 if ( 1 === $delete_count ) { 482 522 $message = __( 'User deleted.' ); 483 523 } else { 484 524 /* translators: %s: Number of users. */ … … switch ( $wp_list_table->current_action() ) { 504 544 ); 505 545 } 506 546 547 $messages[] = '<div id="message" class="updated notice is-dismissible"><p>' . $message . '</p></div>'; 548 break; 549 case 'resetpassword': 550 $reset_count = isset( $_GET['reset_count'] ) ? (int) $_GET['reset_count'] : 0; 551 if ( 1 === $reset_count ) { 552 $message = __( 'Password reset link sent.' ); 553 } else { 554 /* translators: %s: Number of users. */ 555 $message = sprintf( __( 'Password reset links sent to %s users.' ), $reset_count ); 556 } 507 557 $messages[] = '<div id="message" class="updated notice is-dismissible"><p>' . $message . '</p></div>'; 508 558 break; 509 559 case 'promote': -
new file src/wp-includes/blocks/freeform/block.json
diff --git src/wp-includes/blocks/freeform/block.json src/wp-includes/blocks/freeform/block.json new file mode 100644 index 0000000000..a18cd84635
- + 1 { 2 "apiVersion": 2, 3 "name": "core/freeform", 4 "category": "text", 5 "attributes": { 6 "content": { 7 "type": "string", 8 "source": "html" 9 } 10 }, 11 "supports": { 12 "className": false, 13 "customClassName": false, 14 "reusable": false 15 }, 16 "editorStyle": "wp-block-freeform-editor" 17 } -
src/wp-includes/functions.php
diff --git src/wp-includes/functions.php src/wp-includes/functions.php index 536f195b14..cd087e25e3 100644
function is_php_version_compatible( $required ) { 7781 7781 function wp_fuzzy_number_match( $expected, $actual, $precision = 1 ) { 7782 7782 return abs( (float) $expected - (float) $actual ) <= $precision; 7783 7783 } 7784 7785 7786 /** 7787 * Handles sending password retrieval email to user. 7788 * 7789 * @global wpdb $wpdb WordPress database abstraction object. 7790 * @global PasswordHash $wp_hasher Portable PHP password hashing framework. 7791 * @param string $user_login Optional user_login, default null. 7792 * Uses $_POST['user_login'] if $user_login not set. 7793 * 7794 * @return bool|WP_Error True: when finish. WP_Error on error 7795 */ 7796 function retrieve_password( $user_login = null ) { 7797 global $wpdb, $wp_hasher; 7798 error_log( json_encode( 'retrieve_password', JSON_PRETTY_PRINT ) ); 7799 7800 $errors = new WP_Error(); 7801 7802 // Use the passed $user_login if available, otherwise use $_POST['user_login']. 7803 if ( !$user_login && !empty( $_POST['user_login'] ) ) { 7804 $user_login = $_POST['user_login']; 7805 } 7806 7807 if ( empty( $user_login ) ) { 7808 $errors->add('empty_username', __('<strong>ERROR</strong>: Enter a username or email address.')); 7809 } elseif ( strpos( $user_login, '@' ) ) { 7810 $user_data = get_user_by( 'email', sanitize_email( $user_login ) ); 7811 if ( empty( $user_data ) ) 7812 $errors->add('invalid_email', __('<strong>ERROR</strong>: There is no user registered with that email address.')); 7813 } else { 7814 $user_data = get_user_by('login', sanitize_user( $user_login ) ); 7815 } 7816 7817 /** 7818 * Fires before errors are returned from a password reset request. 7819 * 7820 * @since 2.1.0 7821 * @since 4.4.0 Added the `$errors` parameter. 7822 * 7823 * @param WP_Error $errors A WP_Error object containing any errors generated 7824 * by using invalid credentials. 7825 */ 7826 do_action( 'lostpassword_post', $errors ); 7827 7828 if ( $errors->get_error_code() ) 7829 return $errors; 7830 7831 if ( !$user_data ) { 7832 $errors->add('invalidcombo', __('<strong>ERROR</strong>: Invalid username or email.')); 7833 return $errors; 7834 } 7835 7836 // Redefining user_login ensures we return the right case in the email. 7837 $user_login = $user_data->user_login; 7838 $user_email = $user_data->user_email; 7839 $key = get_password_reset_key( $user_data ); 7840 7841 if ( is_wp_error( $key ) ) { 7842 return $key; 7843 } 7844 7845 $message = __('Someone requested that the password be reset for the following account:') . "\r\n\r\n"; 7846 $message .= network_home_url( '/' ) . "\r\n\r\n"; 7847 $message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n"; 7848 $message .= __('If this was a mistake, just ignore this email and nothing will happen.') . "\r\n\r\n"; 7849 $message .= __('To reset your password, visit the following address:') . "\r\n\r\n"; 7850 $message .= '<' . network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . ">\r\n"; 7851 7852 if ( is_multisite() ) 7853 $blogname = $GLOBALS['current_site']->site_name; 7854 else 7855 /* 7856 * The blogname option is escaped with esc_html on the way into the database 7857 * in sanitize_option we want to reverse this for the plain text arena of emails. 7858 */ 7859 $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES); 7860 7861 $title = sprintf( __('[%s] Password Reset'), $blogname ); 7862 7863 /** 7864 * Filter the subject of the password reset email. 7865 * 7866 * @since 2.8.0 7867 * @since 4.4.0 Added the `$user_login` and `$user_data` parameters. 7868 * 7869 * @param string $title Default email title. 7870 * @param string $user_login The username for the user. 7871 * @param WP_User $user_data WP_User object. 7872 */ 7873 $title = apply_filters( 'retrieve_password_title', $title, $user_login, $user_data ); 7874 7875 /** 7876 * Filter the message body of the password reset mail. 7877 * 7878 * @since 2.8.0 7879 * @since 4.1.0 Added `$user_login` and `$user_data` parameters. 7880 * 7881 * @param string $message Default mail message. 7882 * @param string $key The activation key. 7883 * @param string $user_login The username for the user. 7884 * @param WP_User $user_data WP_User object. 7885 */ 7886 $message = apply_filters( 'retrieve_password_message', $message, $key, $user_login, $user_data ); 7887 7888 if ( $message && !wp_mail( $user_email, wp_specialchars_decode( $title ), $message ) ) 7889 wp_die( __('The email could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function.') ); 7890 7891 return true; 7892 } -
src/wp-includes/script-loader.php
diff --git src/wp-includes/script-loader.php src/wp-includes/script-loader.php index 59fef34afa..9d9fe39825 100644
function wp_default_scripts( $scripts ) { 1078 1078 1079 1079 $scripts->add( 'user-profile', "/wp-admin/js/user-profile$suffix.js", array( 'jquery', 'password-strength-meter', 'wp-util' ), false, 1 ); 1080 1080 $scripts->set_translations( 'user-profile' ); 1081 $user_id = isset( $_GET['user_id'] ) ? (int) $_GET['user_id'] : 0; 1082 did_action( 'init' ) && $scripts->localize( 1083 'user-profile', 1084 'userProfileL10n', 1085 array( 1086 'user_id' => $user_id, 1087 'nonce' => wp_create_nonce( 'reset-password-for-' . $user_id ), 1088 ) 1089 ); 1081 1090 1082 1091 $scripts->add( 'language-chooser', "/wp-admin/js/language-chooser$suffix.js", array( 'jquery' ), false, 1 ); 1083 1092 -
src/wp-login.php
diff --git src/wp-login.php src/wp-login.php index 915020f717..e04f332a8f 100644
function wp_login_viewport_meta() { 347 347 <?php 348 348 } 349 349 350 /**351 * Handles sending a password retrieval email to a user.352 *353 * @since 2.5.0354 *355 * @return true|WP_Error True when finished, WP_Error object on error.356 */357 function retrieve_password() {358 $errors = new WP_Error();359 $user_data = false;360 361 if ( empty( $_POST['user_login'] ) || ! is_string( $_POST['user_login'] ) ) {362 $errors->add( 'empty_username', __( '<strong>Error</strong>: Please enter a username or email address.' ) );363 } elseif ( strpos( $_POST['user_login'], '@' ) ) {364 $user_data = get_user_by( 'email', trim( wp_unslash( $_POST['user_login'] ) ) );365 if ( empty( $user_data ) ) {366 $errors->add( 'invalid_email', __( '<strong>Error</strong>: There is no account with that username or email address.' ) );367 }368 } else {369 $login = trim( wp_unslash( $_POST['user_login'] ) );370 $user_data = get_user_by( 'login', $login );371 }372 373 /**374 * Filters the user data during a password reset request.375 *376 * Allows, for example, custom validation using data other than username or email address.377 *378 * @since 5.7.0379 *380 * @param WP_User|false $user_data WP_User object if found, false if the user does not exist.381 * @param WP_Error $errors A WP_Error object containing any errors generated382 * by using invalid credentials.383 */384 $user_data = apply_filters( 'lostpassword_user_data', $user_data, $errors );385 386 /**387 * Fires before errors are returned from a password reset request.388 *389 * @since 2.1.0390 * @since 4.4.0 Added the `$errors` parameter.391 * @since 5.4.0 Added the `$user_data` parameter.392 *393 * @param WP_Error $errors A WP_Error object containing any errors generated394 * by using invalid credentials.395 * @param WP_User|false $user_data WP_User object if found, false if the user does not exist.396 */397 do_action( 'lostpassword_post', $errors, $user_data );398 399 /**400 * Filters the errors encountered on a password reset request.401 *402 * The filtered WP_Error object may, for example, contain errors for an invalid403 * username or email address. A WP_Error object should always be returned,404 * but may or may not contain errors.405 *406 * If any errors are present in $errors, this will abort the password reset request.407 *408 * @since 5.5.0409 *410 * @param WP_Error $errors A WP_Error object containing any errors generated411 * by using invalid credentials.412 * @param WP_User|false $user_data WP_User object if found, false if the user does not exist.413 */414 $errors = apply_filters( 'lostpassword_errors', $errors, $user_data );415 416 if ( $errors->has_errors() ) {417 return $errors;418 }419 420 if ( ! $user_data ) {421 $errors->add( 'invalidcombo', __( '<strong>Error</strong>: There is no account with that username or email address.' ) );422 return $errors;423 }424 425 // Redefining user_login ensures we return the right case in the email.426 $user_login = $user_data->user_login;427 $user_email = $user_data->user_email;428 $key = get_password_reset_key( $user_data );429 430 if ( is_wp_error( $key ) ) {431 return $key;432 }433 434 if ( is_multisite() ) {435 $site_name = get_network()->site_name;436 } else {437 /*438 * The blogname option is escaped with esc_html on the way into the database439 * in sanitize_option. We want to reverse this for the plain text arena of emails.440 */441 $site_name = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );442 }443 444 $message = __( 'Someone has requested a password reset for the following account:' ) . "\r\n\r\n";445 /* translators: %s: Site name. */446 $message .= sprintf( __( 'Site Name: %s' ), $site_name ) . "\r\n\r\n";447 /* translators: %s: User login. */448 $message .= sprintf( __( 'Username: %s' ), $user_login ) . "\r\n\r\n";449 $message .= __( 'If this was a mistake, ignore this email and nothing will happen.' ) . "\r\n\r\n";450 $message .= __( 'To reset your password, visit the following address:' ) . "\r\n\r\n";451 $message .= network_site_url( "wp-login.php?action=rp&key=$key&login=" . rawurlencode( $user_login ), 'login' ) . "\r\n\r\n";452 453 $requester_ip = $_SERVER['REMOTE_ADDR'];454 if ( $requester_ip ) {455 $message .= sprintf(456 /* translators: %s: IP address of password reset requester. */457 __( 'This password reset request originated from the IP address %s.' ),458 $requester_ip459 ) . "\r\n";460 }461 462 /* translators: Password reset notification email subject. %s: Site title. */463 $title = sprintf( __( '[%s] Password Reset' ), $site_name );464 465 /**466 * Filters the subject of the password reset email.467 *468 * @since 2.8.0469 * @since 4.4.0 Added the `$user_login` and `$user_data` parameters.470 *471 * @param string $title Email subject.472 * @param string $user_login The username for the user.473 * @param WP_User $user_data WP_User object.474 */475 $title = apply_filters( 'retrieve_password_title', $title, $user_login, $user_data );476 477 /**478 * Filters the message body of the password reset mail.479 *480 * If the filtered message is empty, the password reset email will not be sent.481 *482 * @since 2.8.0483 * @since 4.1.0 Added `$user_login` and `$user_data` parameters.484 *485 * @param string $message Email message.486 * @param string $key The activation key.487 * @param string $user_login The username for the user.488 * @param WP_User $user_data WP_User object.489 */490 $message = apply_filters( 'retrieve_password_message', $message, $key, $user_login, $user_data );491 492 if ( $message && ! wp_mail( $user_email, wp_specialchars_decode( $title ), $message ) ) {493 $errors->add(494 'retrieve_password_email_failure',495 sprintf(496 /* translators: %s: Documentation URL. */497 __( '<strong>Error</strong>: The email could not be sent. Your site may not be correctly configured to send emails. <a href="%s">Get support for resetting your password</a>.' ),498 esc_url( __( 'https://wordpress.org/support/article/resetting-your-password/' ) )499 )500 );501 return $errors;502 }503 504 return true;505 }506 507 350 // 508 351 // Main. 509 352 //