[ticket/15836] Rename event to have unique name

PHPBB3-15836
This commit is contained in:
Marc Alexander 2018-10-19 12:26:37 -04:00
parent c67dd0c591
commit dbd0304c1d
No known key found for this signature in database
GPG key ID: 50E0D2423696F995

View file

@ -915,7 +915,7 @@ class queue
/**
* Event to send message via external transport
*
* @event core.notification_message_email
* @event core.notification_message_process
* @var bool break Flag indicating if the function return after hook
* @var array addresses The message recipients
* @var string subject The message subject
@ -928,7 +928,7 @@ class queue
'subject',
'msg',
);
extract($phpbb_dispatcher->trigger_event('core.notification_message_email', compact($vars)));
extract($phpbb_dispatcher->trigger_event('core.notification_message_process', compact($vars)));
if (!$break)
{