mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-24 06:03:49 +00:00
(bug 19218) Fix for r49057, join_conds were being passed as query options
This commit is contained in:
parent
55e864c974
commit
b26c3fa824
|
@ -128,7 +128,7 @@ class SpecialAbuseLog extends SpecialPage {
|
|||
$dbr = wfGetDB( DB_SLAVE );
|
||||
|
||||
$row = $dbr->selectRow( array('abuse_filter_log','abuse_filter'), '*',
|
||||
array( 'afl_id' => $id ), __METHOD__,
|
||||
array( 'afl_id' => $id ), __METHOD__, array(),
|
||||
array( 'abuse_filter' => array( 'left join', 'af_id=afl_filter') ) );
|
||||
|
||||
if ( !$row ) {
|
||||
|
|
Loading…
Reference in a new issue