aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/notification/manager.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2012-10-04 21:39:17 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2012-10-04 21:39:17 -0500
commitceb56da965f12245bca6b735cb71f3bbaf505307 (patch)
tree6f261fb79dbe9d0df66ee8c389ecc767eb6f7bd2 /phpBB/includes/notification/manager.php
parentfa605402f79e54c5ac5e1af4f08683c1c17d5201 (diff)
downloadforums-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/manager.php')
-rw-r--r--phpBB/includes/notification/manager.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/notification/manager.php b/phpBB/includes/notification/manager.php
index be29f37a3e..854d72009e 100644
--- a/phpBB/includes/notification/manager.php
+++ b/phpBB/includes/notification/manager.php
@@ -30,7 +30,7 @@ class phpbb_notification_manager
*/
protected $users = 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(dbal $db, phpbb_cache_driver_interface $cache, phpbb_template $template, phpbb_extension_manager $extension_manager, $user, phpbb_auth $auth, phpbb_config $config, $phpbb_root_path, $php_ext)
{
$this->db = $db;
$this->cache = $cache;
@@ -462,7 +462,7 @@ class phpbb_notification_manager
{
$subscription_types = array();
- foreach ($this->get_subscription_files('notifications/type/') as $class_name => $file)
+ foreach ($this->get_subscription_files('notification/type/') as $class_name => $file)
{
$class_name = $this->get_item_type_class_name($class_name);
@@ -498,7 +498,7 @@ class phpbb_notification_manager
{
$subscription_methods = array();
- foreach ($this->get_subscription_files('notifications/method/') as $method_name => $file)
+ foreach ($this->get_subscription_files('notification/method/') as $method_name => $file)
{
$class_name = 'phpbb_notification_method_' . $method_name;