email_to_user no longer exists. Using email_to_users instead.

This commit is contained in:
martin 2002-05-28 01:22:52 +00:00
parent 0c3ebaebd3
commit c31a469cfa
2 changed files with 4 additions and 2 deletions

View File

@ -93,7 +93,8 @@ function reset_password_and_mail($user) {
$subject = "$site->fullname: Changed password";
return email_to_user($user, $from, $subject, $message);
$users[] = $user;
return email_to_users($users, $from, $subject, $message);
}

View File

@ -120,7 +120,8 @@ function send_confirmation_email($user) {
$subject = "$site->fullname account confirmation";
return email_to_user($user, $from, $subject, $message);
$users[] = $user;
return email_to_users($users, $from, $subject, $message);
}