mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-25 19:11:47 +02:00
[ticket/13672] Removed bogus sting concatenation
PHPBB3-13672
This commit is contained in:
@@ -82,7 +82,7 @@ class mcp_reports
|
||||
USERS_TABLE => 'u',
|
||||
),
|
||||
|
||||
'WHERE' => '' . (($report_id) ? 'r.report_id = ' . $report_id : "r.post_id = $post_id") . '
|
||||
'WHERE' => (($report_id) ? 'r.report_id = ' . $report_id : "r.post_id = $post_id") . '
|
||||
AND rr.reason_id = r.reason_id
|
||||
AND r.user_id = u.user_id
|
||||
AND r.pm_id = 0',
|
||||
|
Reference in New Issue
Block a user