fixed mailsend in registerprocess (task #53)

darcs-hash:20050116105854-9977f-a359bd4bdde19e055ab310a4d23a5ee402b2d9d1.gz
This commit is contained in:
andi 2005-01-16 11:58:54 +01:00
parent a2b581d3bb
commit 87ddda9560
1 changed files with 4 additions and 4 deletions

View File

@ -317,14 +317,14 @@ function auth_pwgen(){
function auth_sendPassword($user,$password){
global $conf;
global $lang;
$users = auth_loadUserData();
$hdrs = '';
$userinfo = auth_getUserData($user);
if(!$users[$user]['mail']) return false;
if(!$userinfo['mail']) return false;
$text = rawLocale('password');
$text = str_replace('@DOKUWIKIURL@',getBaseURL(true),$text);
$text = str_replace('@FULLNAME@',$users[$user]['name'],$text);
$text = str_replace('@FULLNAME@',$userinfo['name'],$text);
$text = str_replace('@LOGIN@',$user,$text);
$text = str_replace('@PASSWORD@',$password,$text);
$text = str_replace('@TITLE@',$conf['title'],$text);
@ -332,7 +332,7 @@ function auth_sendPassword($user,$password){
if (!empty($conf['mailfrom'])) {
$hdrs = 'From: '.$conf['mailfrom']."\n";
}
return @mail($users[$user]['mail'],$lang['regpwmail'],$text,$hdrs);
return @mail($userinfo['mail'],$lang['regpwmail'],$text,$hdrs);
}
/**