mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/13668] Removed bogus sting concatenation
PHPBB3-13668
This commit is contained in:
parent
9e06beb48d
commit
d4fb3996d3
1 changed files with 1 additions and 1 deletions
|
@ -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',
|
||||
|
|
Loading…
Add table
Reference in a new issue