For MediaWiki (recent comments | status changes | tags | authors | states | release notes | statistics)
Index: trunk/extensions/AbuseFilter/Views/AbuseFilterViewExamine.php =================================================================== --- trunk/extensions/AbuseFilter/Views/AbuseFilterViewExamine.php (revision 46559) +++ trunk/extensions/AbuseFilter/Views/AbuseFilterViewExamine.php (revision 46560) @@ -64,6 +64,10 @@ $counter = 1; while ( $row = $dbr->fetchObject( $res ) ) { + ## Incompatible stuff. + if ( !$row->rc_this_oldid && !in_array( $row->rc_log_action, array( 'move', 'newusers' ) ) ) + continue; + $rc = RecentChange::newFromRow( $row ); $rc->counter = $counter++; $output .= $changesList->recentChangesLine( $rc, false ); Index: trunk/extensions/AbuseFilter/AbuseFilter.i18n.php =================================================================== --- trunk/extensions/AbuseFilter/AbuseFilter.i18n.php (revision 46559) +++ trunk/extensions/AbuseFilter/AbuseFilter.i18n.php (revision 46560) @@ -343,6 +343,8 @@ 'abusefilter-examine-match' => 'The filter matched this change.', 'abusefilter-examine-nomatch' => 'The filter did not match this change.', 'abusefilter-examine-syntaxerror' => 'The filter has invalid syntax', + 'abusefilter-examine-notfound' => 'The change you requested could not be found.', + 'abusefilter-examine-incompatible' => 'The change you requested is not supported by the Abuse Filter', ); /** Message documentation (Message documentation)