Make WordPress Core

Changeset 15776 for trunk/wp-login.php


Ignore:
Timestamp:
10/12/2010 05:22:05 PM (14 years ago)
Author:
scribu
Message:

Improve password reset email copy. See #5919

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-login.php

    r15746 r15776  
    212212        $wpdb->update($wpdb->users, array('user_activation_key' => $key), array('user_login' => $user_login));
    213213    }
    214     $message = __('Someone has asked to reset the password for the following site and username.') . "\r\n\r\n";
     214    $message = __('Someone requested that the password be reset for the following account:') . "\r\n\r\n";
    215215    $message .= network_site_url() . "\r\n\r\n";
    216216    $message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
    217     $message .= __('To reset your password visit the following address, otherwise just ignore this email and nothing will happen.') . "\r\n\r\n";
     217    $message .= __('If this was a mistake, just ignore this email and nothing will happen.') . "\r\n\r\n";
     218    $message .= __('To reset your password, visit the following address:') . "\r\n\r\n";
    218219    $message .= network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . "\r\n";
    219220
Note: See TracChangeset for help on using the changeset viewer.