Changeset 1378


Ignore:
Timestamp:
03/21/10 13:44:45 (3 years ago)
Author:
nick_ramsay
Message:

[Branch 1.2] Added username above password in password email.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.2/libs/UserAuth.php

    r1333 r1378  
    525525        } 
    526526         
     527        $username = $h->getUserNameFromId($userid); 
     528         
    527529        // send email 
    528530        $subject = $h->lang['main_user_email_new_password_subject']; 
    529         $body = $h->lang['main_user_email_password_conf_body_hello'] . " " . $h->getUserNameFromId($userid); 
     531        $body = $h->lang['main_user_email_password_conf_body_hello'] . " " . $username; 
    530532        $body .= $line_break; 
    531533        $body .= $h->lang['main_user_email_password_conf_body_requested']; 
    532534        $body .= $line_break; 
     535        $body .= $username; 
     536        $body .= $next_line; 
    533537        $body .= $temp_pass; 
    534538        $body .= $line_break; 
Note: See TracChangeset for help on using the changeset viewer.