aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/notification
diff options
context:
space:
mode:
authorNathaniel Guse <nathaniel.guse@gmail.com>2012-11-11 11:37:14 -0600
committerNathaniel Guse <nathaniel.guse@gmail.com>2012-11-11 11:37:14 -0600
commit985d234a29b22086a196dca427e6c474229e3d36 (patch)
tree01f97caf389a49bbe58277fdef5ed6d56f63204e /phpBB/includes/notification
parent84ba10ec8c023ab307eb7d0b829ab337aaaae78e (diff)
downloadforums-985d234a29b22086a196dca427e6c474229e3d36.tar
forums-985d234a29b22086a196dca427e6c474229e3d36.tar.gz
forums-985d234a29b22086a196dca427e6c474229e3d36.tar.bz2
forums-985d234a29b22086a196dca427e6c474229e3d36.tar.xz
forums-985d234a29b22086a196dca427e6c474229e3d36.zip
[ticket/11103] Move all email templates to the email/ directory & prep short
Prepare short email templates (to be used in jabber) PHPBB3-11103
Diffstat (limited to 'phpBB/includes/notification')
-rw-r--r--phpBB/includes/notification/type/bookmark.php2
-rw-r--r--phpBB/includes/notification/type/post_in_queue.php2
-rw-r--r--phpBB/includes/notification/type/quote.php2
-rw-r--r--phpBB/includes/notification/type/report_pm.php2
-rw-r--r--phpBB/includes/notification/type/report_post.php2
-rw-r--r--phpBB/includes/notification/type/topic_in_queue.php2
6 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/includes/notification/type/bookmark.php b/phpBB/includes/notification/type/bookmark.php
index e5ad4132fb..a40bbde5e4 100644
--- a/phpBB/includes/notification/type/bookmark.php
+++ b/phpBB/includes/notification/type/bookmark.php
@@ -131,6 +131,6 @@ class phpbb_notification_type_bookmark extends phpbb_notification_type_post
*/
public function get_email_template()
{
- return 'notifications/bookmark';
+ return 'bookmark';
}
}
diff --git a/phpBB/includes/notification/type/post_in_queue.php b/phpBB/includes/notification/type/post_in_queue.php
index 95e0ce02bb..3cd9b11283 100644
--- a/phpBB/includes/notification/type/post_in_queue.php
+++ b/phpBB/includes/notification/type/post_in_queue.php
@@ -132,6 +132,6 @@ class phpbb_notification_type_post_in_queue extends phpbb_notification_type_post
*/
public function get_email_template()
{
- return 'notifications/post_in_queue';
+ return 'post_in_queue';
}
}
diff --git a/phpBB/includes/notification/type/quote.php b/phpBB/includes/notification/type/quote.php
index c3763da229..f45bb1ae7d 100644
--- a/phpBB/includes/notification/type/quote.php
+++ b/phpBB/includes/notification/type/quote.php
@@ -200,7 +200,7 @@ class phpbb_notification_type_quote extends phpbb_notification_type_post
*/
public function get_email_template()
{
- return 'notifications/quote';
+ return 'quote';
}
/**
diff --git a/phpBB/includes/notification/type/report_pm.php b/phpBB/includes/notification/type/report_pm.php
index 2841468475..9bdc59a4ef 100644
--- a/phpBB/includes/notification/type/report_pm.php
+++ b/phpBB/includes/notification/type/report_pm.php
@@ -123,7 +123,7 @@ class phpbb_notification_type_report_pm extends phpbb_notification_type_pm
*/
public function get_email_template()
{
- return 'notifications/report_pm';
+ return 'report_pm';
}
/**
diff --git a/phpBB/includes/notification/type/report_post.php b/phpBB/includes/notification/type/report_post.php
index 433a5e835d..d80c7b754f 100644
--- a/phpBB/includes/notification/type/report_post.php
+++ b/phpBB/includes/notification/type/report_post.php
@@ -83,7 +83,7 @@ class phpbb_notification_type_report_post extends phpbb_notification_type_post_i
*/
public function get_email_template()
{
- return 'notifications/report_post';
+ return 'report_post';
}
/**
diff --git a/phpBB/includes/notification/type/topic_in_queue.php b/phpBB/includes/notification/type/topic_in_queue.php
index 38bc2ab58d..170a98ca1b 100644
--- a/phpBB/includes/notification/type/topic_in_queue.php
+++ b/phpBB/includes/notification/type/topic_in_queue.php
@@ -125,6 +125,6 @@ class phpbb_notification_type_topic_in_queue extends phpbb_notification_type_top
*/
public function get_email_template()
{
- return 'notifications/topic_in_queue';
+ return 'topic_in_queue';
}
}