1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-04 15:57:45 +02:00

[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

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)
{