diff options
Diffstat (limited to 'phpBB/profile.php')
| -rw-r--r-- | phpBB/profile.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/profile.php b/phpBB/profile.php index ca1941b6af..57cdb309d4 100644 --- a/phpBB/profile.php +++ b/phpBB/profile.php @@ -639,7 +639,8 @@ switch($mode) if(!$coppa) { - mail($email, $l_welcomesubj, $email_msg, "From: $email_from\r\n"); + $email_msg .= "\r\n" . $board_config['board_email']; + mail($email, $l_welcomesubj, $email_msg, "From: ".$board_config['board_email_from']."\r\n"); } $template->set_filenames(array( |
