diff options
author | brunoais <brunoaiss@gmail.com> | 2014-12-17 23:17:12 +0000 |
---|---|---|
committer | brunoais <brunoaiss@gmail.com> | 2014-12-17 23:17:12 +0000 |
commit | 13320a08ef4f9dddeac5b93d4186f6bf05256466 (patch) | |
tree | 67f6c4fe12765c44a5d7d96817dcd8f0a525cd64 | |
parent | 8098d313e6b56822b202ff3be8c12762dfc33bf7 (diff) | |
download | forums-13320a08ef4f9dddeac5b93d4186f6bf05256466.tar forums-13320a08ef4f9dddeac5b93d4186f6bf05256466.tar.gz forums-13320a08ef4f9dddeac5b93d4186f6bf05256466.tar.bz2 forums-13320a08ef4f9dddeac5b93d4186f6bf05256466.tar.xz forums-13320a08ef4f9dddeac5b93d4186f6bf05256466.zip |
[ticket/13154] Forgot the $this->
PHPBB3-13154
-rw-r--r-- | phpBB/phpbb/notification/manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/notification/manager.php b/phpBB/phpbb/notification/manager.php index c3fa04b457..8eda8dc17b 100644 --- a/phpBB/phpbb/notification/manager.php +++ b/phpBB/phpbb/notification/manager.php @@ -373,7 +373,7 @@ class manager 'notify_users', 'options', ); - extract($phpbb_dispatcher->trigger_event('core.notification_manager_add_notifications', compact($vars))); + extract($this->phpbb_dispatcher->trigger_event('core.notification_manager_add_notifications', compact($vars))); $this->add_notifications_for_users($notification_type_name, $data, $notify_users); |