1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-21 16:22:22 +02:00

[ticket/13672] Removed bogus sting concatenation

PHPBB3-13672
This commit is contained in:
brunoais 2015-05-08 10:43:48 +01:00
parent 9833eb4f13
commit 4119be5a3d

View File

@ -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',