mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 13:28:55 +00:00
[ticket/15507] Fix PHP 7.2 warning in functions_messenger.php
By pre assgin `$extra_headers` to array. PHPBB3-15507
This commit is contained in:
parent
3a8305e190
commit
1e1097f06f
1 changed files with 2 additions and 1 deletions
|
@ -24,8 +24,9 @@ if (!defined('IN_PHPBB'))
|
|||
*/
|
||||
class messenger
|
||||
{
|
||||
var $msg, $extra_headers, $replyto, $from, $subject;
|
||||
var $msg, $replyto, $from, $subject;
|
||||
var $addresses = array();
|
||||
var $extra_headers = array();
|
||||
|
||||
var $mail_priority = MAIL_NORMAL_PRIORITY;
|
||||
var $use_queue = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue