1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-27 17:49:27 +02:00

[ticket/8558] Fix operator

PHPBB3-8558
This commit is contained in:
Oliver Schramm 2014-04-23 17:45:09 +02:00
parent 933dcde805
commit 45e39d0990

View File

@ -484,7 +484,7 @@ class messenger
$use_queue = true;
}
$board_contact = (($config['board_contact_name']) ? '"' . mail_encode($config['board_contact_name']) . '" ' : '') . '<' . $config['board_contact'] . '>';
$board_contact = (($config['board_contact_name'] !== '') ? '"' . mail_encode($config['board_contact_name']) . '" ' : '') . '<' . $config['board_contact'] . '>';
if (empty($this->replyto))
{