Make WordPress Core

Changeset 2658 for trunk/wp-login.php


Ignore:
Timestamp:
06/24/2005 01:22:55 AM (20 years ago)
Author:
ryan
Message:

Initialize message before concat.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-login.php

    r2632 r2658  
    9999    // now insert the new pass md5'd into the db
    100100    $wpdb->query("UPDATE $wpdb->users SET user_activation_key = '$key' WHERE user_login = '$user_login'");
    101     $message .= __('Someone has asked to reset the password for the following site and username.') . "\r\n\r\n";
     101    $message = __('Someone has asked to reset the password for the following site and username.') . "\r\n\r\n";
    102102    $message .= get_option('siteurl') . "\r\n\r\n";
    103103    $message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
Note: See TracChangeset for help on using the changeset viewer.