aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/report.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2014-08-21 00:44:05 +0200
committerMarc Alexander <admin@m-a-styles.de>2014-08-21 00:44:05 +0200
commit31aac66f5aca218254a6ff199c21a282bc6059bc (patch)
tree5237ffca00a3f41fd892398f41aa3b3203ce138a /phpBB/report.php
parent421005b28208e91c236a84500f2799a9f6033a03 (diff)
parent71f78fb8c6167f33e9e650f97243099fc2bf9a4f (diff)
downloadforums-31aac66f5aca218254a6ff199c21a282bc6059bc.tar
forums-31aac66f5aca218254a6ff199c21a282bc6059bc.tar.gz
forums-31aac66f5aca218254a6ff199c21a282bc6059bc.tar.bz2
forums-31aac66f5aca218254a6ff199c21a282bc6059bc.tar.xz
forums-31aac66f5aca218254a6ff199c21a282bc6059bc.zip
Merge pull request #2885 from Nicofuma/ticket/12990
[ticket/12990] Use the full services name for the notification's types
Diffstat (limited to 'phpBB/report.php')
-rw-r--r--phpBB/report.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/report.php b/phpBB/report.php
index fd6fab6645..1b5d3c9d46 100644
--- a/phpBB/report.php
+++ b/phpBB/report.php
@@ -231,7 +231,7 @@ if ($submit && $reason_id)
$lang_return = $user->lang['RETURN_TOPIC'];
$lang_success = $user->lang['POST_REPORTED_SUCCESS'];
- $phpbb_notifications->add_notifications('report_post', array_merge($report_data, $row, $forum_data, array(
+ $phpbb_notifications->add_notifications('notification.type.report_post', array_merge($report_data, $row, $forum_data, array(
'report_text' => $report_text,
)));
}
@@ -261,7 +261,7 @@ if ($submit && $reason_id)
$lang_return = $user->lang['RETURN_PM'];
$lang_success = $user->lang['PM_REPORTED_SUCCESS'];
- $phpbb_notifications->add_notifications('report_pm', array_merge($report_data, $row, array(
+ $phpbb_notifications->add_notifications('notification.type.report_pm', array_merge($report_data, $row, array(
'report_text' => $report_text,
'from_user_id' => $report_data['author_id'],
'report_id' => $report_id,