Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: password_reset

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
167      $key = preg_replace('/[^a-z0-9]/i', '', $key);
168
169      if ( empty( $key ) )
170           return new WP_Error('invalid_key', __('Invalid key'));
171
172      $user = $wpdb->get_row($wpdb->prepare("SELECT * FROM $wpdb->users WHERE user_activation_key = %s", $key));
173      if ( empty( $user ) )
174           return new WP_Error('invalid_key', __('Invalid key'));
175
176      do_action('password_reset', $user);
177
178      // Generate something random for a password...
179      $new_pass = wp_generate_password();
180      wp_set_password($new_pass, $user->ID);
181      $message  = sprintf(__('Username: %s'), $user->user_login) . "\r\n";
182      $message .= sprintf(__('Password: %s'), $new_pass) . "\r\n";
183      $message .= site_url('wp-login.php', 'login') . "\r\n";
184
185      if (  !wp_mail($user->user_email, sprintf(__('[%s] Your new password'), get_option('blogname')), $message) )