mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-11 03:04:09 +02:00
- correct jabber token handling
- undisclosed-recipients:; instead of undisclosed-recipient:; - PM details button should not be there git-svn-id: file:///svn/phpbb/trunk@8090 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -394,7 +394,7 @@ class messenger
|
||||
// Send message ...
|
||||
if (!$use_queue)
|
||||
{
|
||||
$mail_to = ($to == '') ? 'Undisclosed-Recipient:;' : $to;
|
||||
$mail_to = ($to == '') ? 'undisclosed-recipients:;' : $to;
|
||||
$err_msg = '';
|
||||
|
||||
if ($config['smtp_delivery'])
|
||||
@@ -629,7 +629,7 @@ class queue
|
||||
{
|
||||
case 'email':
|
||||
$err_msg = '';
|
||||
$to = (!$to) ? 'Undisclosed-Recipient:;' : $to;
|
||||
$to = (!$to) ? 'undisclosed-recipients:;' : $to;
|
||||
|
||||
if ($config['smtp_delivery'])
|
||||
{
|
||||
@@ -922,7 +922,7 @@ function smtpmail($addresses, $subject, $message, &$err_msg, $headers = '')
|
||||
$smtp->server_send("Subject: $subject");
|
||||
|
||||
// Now the To Header.
|
||||
$to_header = ($to_header == '') ? 'Undisclosed-Recipients:;' : $to_header;
|
||||
$to_header = ($to_header == '') ? 'undisclosed-recipients:;' : $to_header;
|
||||
$smtp->server_send("To: $to_header");
|
||||
|
||||
// Now the CC Header.
|
||||
|
Reference in New Issue
Block a user