(bug 19218) Fix for r49057, join_conds were being passed as query options

This commit is contained in:
Alex Z. 2009-06-15 17:36:57 +00:00
parent 55e864c974
commit b26c3fa824

View file

@ -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 ) {