Index: trunk/extensions/AbuseFilter/Views/AbuseFilterViewList.php |
— | — | @@ -178,7 +178,7 @@ |
179 | 179 | 'af_id' => 'abusefilter-list-id', |
180 | 180 | 'af_public_comments' => 'abusefilter-list-public', |
181 | 181 | 'af_actions' => 'abusefilter-list-consequences', |
182 | | - 'status' => 'abusefilter-list-status', |
| 182 | + 'af_enabled' => 'abusefilter-list-status', |
183 | 183 | 'af_timestamp' => 'abusefilter-list-lastmodified', |
184 | 184 | 'af_hidden' => 'abusefilter-list-visibility', |
185 | 185 | 'af_hit_count' => 'abusefilter-list-hitcount' ); |
— | — | @@ -216,7 +216,7 @@ |
217 | 217 | $displayActions[] = AbuseFilter::getActionDisplay( $action );; |
218 | 218 | } |
219 | 219 | return htmlspecialchars( implode( ', ', $displayActions ) ); |
220 | | - case 'status': |
| 220 | + case 'af_enabled': |
221 | 221 | $statuses = array(); |
222 | 222 | if ($row->af_deleted) |
223 | 223 | $statuses[] = wfMsgExt( 'abusefilter-deleted', 'parseinline' ); |
— | — | @@ -287,7 +287,7 @@ |
288 | 288 | function isFieldSortable($name) { |
289 | 289 | $sortable_fields = array( |
290 | 290 | 'af_id', |
291 | | - 'status', |
| 291 | + 'af_enabled', |
292 | 292 | 'af_hit_count', |
293 | 293 | 'af_throttled', |
294 | 294 | 'af_user_text', |