mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
Remove trim from $mail_to to allow bcc only sends.
git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3232 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
7d401823a1
commit
0f08995ef9
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ function smtpmail($mail_to, $subject, $message, $headers = "")
|
|||
$cc = explode(",", $cc);
|
||||
$bcc = explode(",", $bcc);
|
||||
}
|
||||
if(trim($mail_to) == "")
|
||||
if($mail_to == "")
|
||||
{
|
||||
message_die(GENERAL_ERROR, "No email address specified", "", __LINE__, __FILE__);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue