WordPress.org

Make WordPress Core

Ticket #9682: 9682.5.diff

File 9682.5.diff, 3.4 KB (added by Denis-de-Bernardy, 4 years ago)

against trunk @ 11219

  • wp-login.php

     
    147147        $message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n"; 
    148148        $message .= __('To reset your password visit the following address, otherwise just ignore this email and nothing will happen.') . "\r\n\r\n"; 
    149149        $message .= site_url("wp-login.php?action=rp&key=$key", 'login') . "\r\n"; 
    150  
    151         if ( !wp_mail($user_email, sprintf(__('[%s] Password Reset'), get_option('blogname')), $message) ) 
     150         
     151        $title = sprintf(__('[%s] Password Reset'), get_option('blogname')); 
     152         
     153        $title = apply_filters('retrieve_password_title', $title); 
     154        $message = apply_filters('retrieve_password_message', $message, $key); 
     155         
     156        if ( $message && !wp_mail($user_email, $title, $message) ) 
    152157                die('<p>' . __('The e-mail could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function...') . '</p>'); 
    153158 
    154159        return true; 
     
    174179        if ( empty( $user ) ) 
    175180                return new WP_Error('invalid_key', __('Invalid key')); 
    176181 
    177         do_action('password_reset', $user); 
    178  
    179182        // Generate something random for a password... 
    180183        $new_pass = wp_generate_password(); 
     184         
     185        do_action('password_reset', $user, $new_pass); 
     186 
    181187        wp_set_password($new_pass, $user->ID); 
    182188        update_usermeta($user->ID, 'default_password_nag', true); //Set up the Password change nag. 
    183189        $message  = sprintf(__('Username: %s'), $user->user_login) . "\r\n"; 
    184190        $message .= sprintf(__('Password: %s'), $new_pass) . "\r\n"; 
    185191        $message .= site_url('wp-login.php', 'login') . "\r\n"; 
    186192 
    187         if (  !wp_mail($user->user_email, sprintf(__('[%s] Your new password'), get_option('blogname')), $message) ) 
    188                 die('<p>' . __('The e-mail could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function...') . '</p>'); 
     193        $title = sprintf(__('[%s] Your new password'), get_option('blogname')); 
    189194 
     195        $title = apply_filters('password_reset_title', $title); 
     196        $message = apply_filters('password_reset_message', $message, $new_pass); 
     197   
     198        if ( $message && !wp_mail($user->user_email, $title, $message) ) 
     199                die('<p>' . __('The e-mail could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function...') . '</p>'); 
     200 
    190201        wp_password_change_notification($user); 
    191202 
    192203        return true; 
     
    246257// Main 
    247258// 
    248259 
    249 $action = isset($_REQUEST['action']) ? $_REQUEST['action'] : ''; 
     260$action = isset($_REQUEST['action']) ? $_REQUEST['action'] : 'login'; 
    250261$errors = new WP_Error(); 
    251262 
    252263if ( isset($_GET['key']) ) 
    253264        $action = 'resetpass'; 
    254265 
     266// validate action so as to default to the login screen 
     267if ( !in_array($action, array('logout', 'lostpassword', 'retrievepassword', 'resetpass', 'rp', 'register', 'login')) && false === has_filter('login_form_' . $action) ) 
     268        $action = 'login'; 
     269 
    255270nocache_headers(); 
    256271 
    257272header('Content-Type: '.get_bloginfo('html_type').'; charset='.get_bloginfo('charset')); 
     
    270285if ( SITECOOKIEPATH != COOKIEPATH ) 
    271286        setcookie(TEST_COOKIE, 'WP Cookie check', 0, SITECOOKIEPATH, COOKIE_DOMAIN); 
    272287 
     288// allow plugins to override the default actions, and to add extra actions if they want 
     289do_action('login_form_' . $action); 
     290 
    273291$http_post = ('POST' == $_SERVER['REQUEST_METHOD']); 
    274292switch ($action) { 
    275293 
     
    517535 
    518536break; 
    519537} // end action switch 
    520 ?> 
     538?> 
     539 No newline at end of file