diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-10-04 21:39:17 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-10-04 21:39:17 -0500 |
commit | ceb56da965f12245bca6b735cb71f3bbaf505307 (patch) | |
tree | 6f261fb79dbe9d0df66ee8c389ecc767eb6f7bd2 /phpBB/includes/notification/method/base.php | |
parent | fa605402f79e54c5ac5e1af4f08683c1c17d5201 (diff) | |
download | forums-ceb56da965f12245bca6b735cb71f3bbaf505307.tar forums-ceb56da965f12245bca6b735cb71f3bbaf505307.tar.gz forums-ceb56da965f12245bca6b735cb71f3bbaf505307.tar.bz2 forums-ceb56da965f12245bca6b735cb71f3bbaf505307.tar.xz forums-ceb56da965f12245bca6b735cb71f3bbaf505307.zip |
[ticket/11103] Fixing a few bugs from the previous changes
PHPBB3-11103
Diffstat (limited to 'phpBB/includes/notification/method/base.php')
-rw-r--r-- | phpBB/includes/notification/method/base.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/notification/method/base.php b/phpBB/includes/notification/method/base.php index d95a65fa72..9f1db6d9f5 100644 --- a/phpBB/includes/notification/method/base.php +++ b/phpBB/includes/notification/method/base.php @@ -50,8 +50,9 @@ abstract class phpbb_notification_method_base implements phpbb_notification_meth */ protected $queue = array(); - public function __construct(dbal $db, phpbb_cache_driver_interface $cache, phpbb_template $template, phpbb_extension_manager $extension_manager, phpbb_user $user, phpbb_auth $auth, phpbb_config $config, $phpbb_root_path, $php_ext) + public function __construct(phpbb_notification_manager $notification_manager, dbal $db, phpbb_cache_driver_interface $cache, phpbb_template $template, phpbb_extension_manager $extension_manager, phpbb_user $user, phpbb_auth $auth, phpbb_config $config, $phpbb_root_path, $php_ext) { + $this->notification_manager = $notification_manager; $this->db = $db; $this->cache = $cache; $this->template = $template; |