mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/8558] Fix operator
PHPBB3-8558
This commit is contained in:
@@ -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))
|
||||
{
|
||||
|
Reference in New Issue
Block a user