| Filter ID: | 3 |
Description:
- (publicly viewable)
|
|
| Statistics: | Of the last 1 action, this filter has matched 0 (0%).
On average, its run time is 0.13 ms, and it consumes 5 conditions of the condition limit. |
| Conditions: | /* This filter checks edit actions in user talk pages, except for trusted users */
/* Check if user is NOT in any trusted groups using boolean operations:
! means "not"
in means "is found in the array"
| means "or" */
!(
'bot' in user_groups |
'sysop' in user_groups |
'autoconfirmed' in user_groups|
'confirmed' in user_groups
)
/* AND (&) check if all these conditions are true: */
& (
/* Check if we're in user talk namespace (which is namespace 2) */
page_namespace == 2
/* AND check if links were added (more than 0 links) */
& added_links > 0
)
|
| Notes: |
|
| Flags: | Warning: This filter was automatically flagged as harmful. No actions were automatically disabled, but please check whether the high rate of matches is expected. If so, you can ignore this warning.
|
| Filter last modified: | 22:12, 11 June 2025 by Keith (talk | contribs) |
| History: | View this filter's history |
| Tools: | Export this filter to another wiki
|