Index: branches/wmf/1.16wmf4/extensions/FlaggedRevs_alpha/FlaggedRevs.php |
— | — | @@ -179,10 +179,6 @@ |
180 | 180 | # Sysops can always move stable pages |
181 | 181 | $wgGroupPermissions['sysop']['movestable'] = true; |
182 | 182 | |
183 | | -# Try to avoid flood by having autoconfirmed user edits to non-reviewable |
184 | | -# namespaces autopatrolled. |
185 | | -$wgGroupPermissions['autoconfirmed']['autopatrol'] = true; |
186 | | - |
187 | 183 | # Define when users get automatically promoted to Editors. Set as false to disable. |
188 | 184 | # 'spacing' and 'benchmarks' require edits to be spread out. Users must have X (benchmark) |
189 | 185 | # edits Y (spacing) days apart. |
Index: branches/wmf/1.16wmf4/extensions/FlaggedRevs_alpha/FlaggedRevs.hooks.php |
— | — | @@ -1109,7 +1109,11 @@ |
1110 | 1110 | } |
1111 | 1111 | |
1112 | 1112 | /** |
1113 | | - * When an edit is made to a page that can't be reviewed, autopatrol if allowed. |
| 1113 | + * When an edit is made to a page: |
| 1114 | + * (a) If the page is reviewable, silently mark the edit patrolled if it was auto-reviewed |
| 1115 | + * (b) If the page can be patrolled, auto-patrol the edit patrolled as normal |
| 1116 | + * (c) If the page is new and $wgUseNPPatrol is on, auto-patrol the edit patrolled as normal |
| 1117 | + * (d) If the edit is neither reviewable nor patrolleable, silently mark it patrolled |
1114 | 1118 | */ |
1115 | 1119 | public static function autoMarkPatrolled( RecentChange &$rc ) { |
1116 | 1120 | global $wgUser; |