mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
I knew that I forgot something: f_report now in use
git-svn-id: file:///svn/phpbb/trunk@3783 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -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']))
|
||||
|
Reference in New Issue
Block a user