aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2018-10-19 12:26:37 -0400
committerMarc Alexander <admin@m-a-styles.de>2018-10-20 12:23:19 -0400
commitdbd0304c1d659e938d4f311649631e7a6fdb32f6 (patch)
tree46a1311aecfac7b51643788ccec0553249e4e8ac
parentc67dd0c5912844a50323b97e8fecb30d21bb361c (diff)
downloadforums-dbd0304c1d659e938d4f311649631e7a6fdb32f6.tar
forums-dbd0304c1d659e938d4f311649631e7a6fdb32f6.tar.gz
forums-dbd0304c1d659e938d4f311649631e7a6fdb32f6.tar.bz2
forums-dbd0304c1d659e938d4f311649631e7a6fdb32f6.tar.xz
forums-dbd0304c1d659e938d4f311649631e7a6fdb32f6.zip
[ticket/15836] Rename event to have unique name
PHPBB3-15836
-rw-r--r--phpBB/includes/functions_messenger.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_messenger.php b/phpBB/includes/functions_messenger.php
index 7b530d7119..75c15657b0 100644
--- a/phpBB/includes/functions_messenger.php
+++ b/phpBB/includes/functions_messenger.php
@@ -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)
{