aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/report.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/report.php')
-rw-r--r--phpBB/report.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/phpBB/report.php b/phpBB/report.php
index 6aaa548297..937dfa78ff 100644
--- a/phpBB/report.php
+++ b/phpBB/report.php
@@ -55,14 +55,18 @@ $forum_id = $row['forum_id'];
$topic_id = $row['topic_id'];
// Checking permissions
-if (!$auth->acl_gets('f_list', 'm_', 'a_', $forum_id))
+if (!$auth->acl_get('f_list', $forum_id))
{
trigger_error('POST_NOT_EXIST');
}
-if (!$auth->acl_gets('f_read', 'm_', 'a_', $forum_id))
+if (!$auth->acl_get('f_read', $forum_id))
{
trigger_error('USER_CANNOT_READ');
}
+if (!$auth->acl_get('f_report', $forum_id))
+{
+ trigger_error('USER_CANNOT_REPORT');
+}
// Has the report been cancelled?
if (isset($_POST['cancel']))