aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/report.php
diff options
context:
space:
mode:
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 1997a55a15..2d1c25fe87 100644
--- a/phpBB/report.php
+++ b/phpBB/report.php
@@ -28,7 +28,7 @@ $reason_id = request_var('reason_id', 0);
$report_text = utf8_normalize_nfc(request_var('report_text', '', true));
$user_notify = ($user->data['is_registered']) ? request_var('notify', 0) : false;
-$submit = request::is_set_post('submit');
+$submit = phpbb_request::is_set_post('submit');
if (!$post_id)
{
@@ -38,7 +38,7 @@ if (!$post_id)
$redirect_url = append_sid('viewtopic', "f=$forum_id&p=$post_id") . "#p$post_id";
// Has the report been cancelled?
-if (request::is_set_post('cancel'))
+if (phpbb_request::is_set_post('cancel'))
{
redirect($redirect_url);
}