diff options
| author | James Atkinson <thefinn@users.sourceforge.net> | 2001-05-16 00:49:06 +0000 |
|---|---|---|
| committer | James Atkinson <thefinn@users.sourceforge.net> | 2001-05-16 00:49:06 +0000 |
| commit | 47dce29bbd496fef49ca2fd8172a3efffe863c64 (patch) | |
| tree | 9194eedd8f1bc94be243cc5848a5bc73c5f562d5 /phpBB/profile.php | |
| parent | 6dfe84827d7a2a62bc688741e0a961b652c4b536 (diff) | |
| download | forums-47dce29bbd496fef49ca2fd8172a3efffe863c64.tar forums-47dce29bbd496fef49ca2fd8172a3efffe863c64.tar.gz forums-47dce29bbd496fef49ca2fd8172a3efffe863c64.tar.bz2 forums-47dce29bbd496fef49ca2fd8172a3efffe863c64.tar.xz forums-47dce29bbd496fef49ca2fd8172a3efffe863c64.zip | |
Added functionality for the next/prev buttions in viewtopic
git-svn-id: file:///svn/phpbb/trunk@301 89ea8834-ac86-4346-8a33-228a782c2dd0
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( |
