Index: trunk/extensions/AbuseFilter/AbuseFilter.php |
— | — | @@ -141,7 +141,7 @@ |
142 | 142 | ), |
143 | 143 | ) + $commonModuleInfo; |
144 | 144 | |
145 | | -$wgAbuseFilterAvailableActions = array( 'flag', 'hidedetails', 'throttle', 'warn', 'disallow', 'blockautopromote', 'block', 'degroup', 'tag' ); |
| 145 | +$wgAbuseFilterAvailableActions = array( 'flag', 'throttle', 'warn', 'disallow', 'blockautopromote', 'block', 'degroup', 'tag' ); |
146 | 146 | |
147 | 147 | $wgAbuseFilterConditionLimit = 1000; |
148 | 148 | |
— | — | @@ -153,7 +153,7 @@ |
154 | 154 | // Abuse filter parser class |
155 | 155 | $wgAbuseFilterParserClass = 'AbuseFilterParser'; |
156 | 156 | |
157 | | -$wgAbuseFilterRestrictedActions = array( 'block', 'degroup', 'hidedetails' ); |
| 157 | +$wgAbuseFilterRestrictedActions = array( 'block', 'degroup' ); |
158 | 158 | |
159 | 159 | // UDP configuration |
160 | 160 | $wgAbuseFilterUDPPrefix = 'abusefilter:'; |
— | — | @@ -169,4 +169,3 @@ |
170 | 170 | |
171 | 171 | // Callback functions for custom actions |
172 | 172 | $wgAbuseFilterCustomActionsHandlers = array(); |
173 | | - |
Index: trunk/extensions/AbuseFilter/AbuseFilter.class.php |
— | — | @@ -730,7 +730,6 @@ |
731 | 731 | $thisLog['afl_filter'] = $filter; |
732 | 732 | $thisLog['afl_action'] = $action; |
733 | 733 | $thisLog['afl_actions'] = implode( ',', $actions ); |
734 | | - $thisLog['afl_deleted'] = in_array('hidedetails', $actions) ? 1 : 0; |
735 | 734 | |
736 | 735 | // Don't log if we were only throttling. |
737 | 736 | if ( $thisLog['afl_actions'] != 'throttle' ) { |