aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/notification/manager.php (renamed from phpBB/includes/notifications/service.php)6
-rw-r--r--phpBB/includes/notification/method/base.php (renamed from phpBB/includes/notifications/method/base.php)0
-rw-r--r--phpBB/includes/notification/method/email.php (renamed from phpBB/includes/notifications/method/email.php)0
-rw-r--r--phpBB/includes/notification/method/interface.php (renamed from phpBB/includes/notifications/method/interface.php)0
-rw-r--r--phpBB/includes/notification/method/jabber.php (renamed from phpBB/includes/notifications/method/jabber.php)0
-rw-r--r--phpBB/includes/notification/type/approve_post.php (renamed from phpBB/includes/notifications/type/approve_post.php)0
-rw-r--r--phpBB/includes/notification/type/approve_topic.php (renamed from phpBB/includes/notifications/type/approve_topic.php)0
-rw-r--r--phpBB/includes/notification/type/base.php (renamed from phpBB/includes/notifications/type/base.php)0
-rw-r--r--phpBB/includes/notification/type/bookmark.php (renamed from phpBB/includes/notifications/type/bookmark.php)0
-rw-r--r--phpBB/includes/notification/type/disapprove_post.php (renamed from phpBB/includes/notifications/type/disapprove_post.php)0
-rw-r--r--phpBB/includes/notification/type/disapprove_topic.php (renamed from phpBB/includes/notifications/type/disapprove_topic.php)0
-rw-r--r--phpBB/includes/notification/type/interface.php (renamed from phpBB/includes/notifications/type/interface.php)0
-rw-r--r--phpBB/includes/notification/type/pm.php (renamed from phpBB/includes/notifications/type/pm.php)0
-rw-r--r--phpBB/includes/notification/type/post.php (renamed from phpBB/includes/notifications/type/post.php)0
-rw-r--r--phpBB/includes/notification/type/post_in_queue.php (renamed from phpBB/includes/notifications/type/post_in_queue.php)0
-rw-r--r--phpBB/includes/notification/type/quote.php (renamed from phpBB/includes/notifications/type/quote.php)0
-rw-r--r--phpBB/includes/notification/type/topic.php (renamed from phpBB/includes/notifications/type/topic.php)0
-rw-r--r--phpBB/includes/notification/type/topic_in_queue.php (renamed from phpBB/includes/notifications/type/topic_in_queue.php)0
18 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/notifications/service.php b/phpBB/includes/notification/manager.php
index 2bf21cefa5..15db3f89fd 100644
--- a/phpBB/includes/notifications/service.php
+++ b/phpBB/includes/notification/manager.php
@@ -360,7 +360,7 @@ class phpbb_notification_manager
{
if (!isset($notification_methods[$method]))
{
- $method_class_name = 'phpbb_notifications_method_' . $method;
+ $method_class_name = 'phpbb_notification_method_' . $method;
$notification_methods[$method] = new $method_class_name($this->phpbb_container);
}
@@ -496,7 +496,7 @@ class phpbb_notification_manager
foreach ($this->get_subscription_files('notifications/method/') as $method_name => $file)
{
- $class_name = 'phpbb_notifications_method_' . $method_name;
+ $class_name = 'phpbb_notification_method_' . $method_name;
if (!class_exists($class_name))
{
@@ -651,7 +651,7 @@ class phpbb_notification_manager
$item_type = preg_replace('#[^a-z_]#', '', $item_type);
}
- return 'phpbb_notifications_type_' . $item_type;
+ return 'phpbb_notification_type_' . $item_type;
}
/**
diff --git a/phpBB/includes/notifications/method/base.php b/phpBB/includes/notification/method/base.php
index b502d3afd0..b502d3afd0 100644
--- a/phpBB/includes/notifications/method/base.php
+++ b/phpBB/includes/notification/method/base.php
diff --git a/phpBB/includes/notifications/method/email.php b/phpBB/includes/notification/method/email.php
index 1b6b44d137..1b6b44d137 100644
--- a/phpBB/includes/notifications/method/email.php
+++ b/phpBB/includes/notification/method/email.php
diff --git a/phpBB/includes/notifications/method/interface.php b/phpBB/includes/notification/method/interface.php
index 4b990ec9fa..4b990ec9fa 100644
--- a/phpBB/includes/notifications/method/interface.php
+++ b/phpBB/includes/notification/method/interface.php
diff --git a/phpBB/includes/notifications/method/jabber.php b/phpBB/includes/notification/method/jabber.php
index 9232d8fc45..9232d8fc45 100644
--- a/phpBB/includes/notifications/method/jabber.php
+++ b/phpBB/includes/notification/method/jabber.php
diff --git a/phpBB/includes/notifications/type/approve_post.php b/phpBB/includes/notification/type/approve_post.php
index 9a3def6217..9a3def6217 100644
--- a/phpBB/includes/notifications/type/approve_post.php
+++ b/phpBB/includes/notification/type/approve_post.php
diff --git a/phpBB/includes/notifications/type/approve_topic.php b/phpBB/includes/notification/type/approve_topic.php
index 00af312018..00af312018 100644
--- a/phpBB/includes/notifications/type/approve_topic.php
+++ b/phpBB/includes/notification/type/approve_topic.php
diff --git a/phpBB/includes/notifications/type/base.php b/phpBB/includes/notification/type/base.php
index 40462bccfb..40462bccfb 100644
--- a/phpBB/includes/notifications/type/base.php
+++ b/phpBB/includes/notification/type/base.php
diff --git a/phpBB/includes/notifications/type/bookmark.php b/phpBB/includes/notification/type/bookmark.php
index 51f23bc294..51f23bc294 100644
--- a/phpBB/includes/notifications/type/bookmark.php
+++ b/phpBB/includes/notification/type/bookmark.php
diff --git a/phpBB/includes/notifications/type/disapprove_post.php b/phpBB/includes/notification/type/disapprove_post.php
index 8fa0102e3d..8fa0102e3d 100644
--- a/phpBB/includes/notifications/type/disapprove_post.php
+++ b/phpBB/includes/notification/type/disapprove_post.php
diff --git a/phpBB/includes/notifications/type/disapprove_topic.php b/phpBB/includes/notification/type/disapprove_topic.php
index 186c42d2b6..186c42d2b6 100644
--- a/phpBB/includes/notifications/type/disapprove_topic.php
+++ b/phpBB/includes/notification/type/disapprove_topic.php
diff --git a/phpBB/includes/notifications/type/interface.php b/phpBB/includes/notification/type/interface.php
index aa54c62a97..aa54c62a97 100644
--- a/phpBB/includes/notifications/type/interface.php
+++ b/phpBB/includes/notification/type/interface.php
diff --git a/phpBB/includes/notifications/type/pm.php b/phpBB/includes/notification/type/pm.php
index 8252a8577b..8252a8577b 100644
--- a/phpBB/includes/notifications/type/pm.php
+++ b/phpBB/includes/notification/type/pm.php
diff --git a/phpBB/includes/notifications/type/post.php b/phpBB/includes/notification/type/post.php
index 1e654ef51b..1e654ef51b 100644
--- a/phpBB/includes/notifications/type/post.php
+++ b/phpBB/includes/notification/type/post.php
diff --git a/phpBB/includes/notifications/type/post_in_queue.php b/phpBB/includes/notification/type/post_in_queue.php
index f0a5e0baec..f0a5e0baec 100644
--- a/phpBB/includes/notifications/type/post_in_queue.php
+++ b/phpBB/includes/notification/type/post_in_queue.php
diff --git a/phpBB/includes/notifications/type/quote.php b/phpBB/includes/notification/type/quote.php
index dd3cbedee2..dd3cbedee2 100644
--- a/phpBB/includes/notifications/type/quote.php
+++ b/phpBB/includes/notification/type/quote.php
diff --git a/phpBB/includes/notifications/type/topic.php b/phpBB/includes/notification/type/topic.php
index 7753b196e8..7753b196e8 100644
--- a/phpBB/includes/notifications/type/topic.php
+++ b/phpBB/includes/notification/type/topic.php
diff --git a/phpBB/includes/notifications/type/topic_in_queue.php b/phpBB/includes/notification/type/topic_in_queue.php
index 385578cec8..385578cec8 100644
--- a/phpBB/includes/notifications/type/topic_in_queue.php
+++ b/phpBB/includes/notification/type/topic_in_queue.php