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
191           return new WP_Error('invalid_key', __('Invalid key'));
192
193      $user = $wpdb->get_row($wpdb->prepare("SELECT * FROM $wpdb->users WHERE user_activation_key = %s", $key));
194      if ( empty( $user ) )
195           return new WP_Error('invalid_key', __('Invalid key'));
196
197      // Generate something random for a password...
198      $new_pass = wp_generate_password();
199
200      do_action('password_reset', $user, $new_pass);
201
202      wp_set_password($new_pass, $user->ID);
203      update_usermeta($user->ID, 'default_password_nag', true); //Set up the Password change nag.
204      $message  = sprintf(__('Username: %s'), $user->user_login) . "\r\n";
205      $message .= sprintf(__('Password: %s'), $new_pass) . "\r\n";
206      $message .= site_url('wp-login.php', 'login') . "\r\n";
207
208      $title = sprintf(__('[%s] Your new password'), get_option('blogname'));
209