Help:Patrolled edits
| Content for this help page is provided by the MediaWiki wiki's Public Domain Help Pages project, which provides help page content that can be freely copied into fresh wiki installations and/or distributed with MediaWiki software; see Help:Contents for an overview of all pages.
We encourage you to also edit this page on the MediaWiki wiki with any updates. This helps contribute to other wiki projects. |
Patrolled edits are a feature which allows specific users to mark items in recent changes as having been "patrolled" or "approved". By default this is only available if you have sysop permissions.
This feature is useful when reviewing recent changes for undesirable edits, link spam and vandalism. This allows people (with permission to do so) to coordinate their patrolling activity, such that edits get checked over once, with less wasted effort (different people checking the same edit).
Contents |
[edit] Marking edits as patrolled
- To mark an edit as patrolled
- Access Special:RecentChanges
- Changes which are not patrolled will be indicated with a red exclamation mark
- Click the (
| MediaWiki has a page about this at: diff |
) link next to an edit
- To mark the edit as patrolled, click the mark as patrolled link
[edit] Hiding patrolled edits from recent changes
Patrolled edits can be hidden from recent changes by adding &hidepatrolled=1 to the URL in the following form:
http://www.wikiqueer.org/mw/index.php?title=Special:RecentChanges&hidepatrolled=1
[edit] Customization
[edit] Enabling/disabling
Patrolled edits are enabled by default in MediaWiki 1.4 and later. To disable this, set
| MediaWiki has a page about this at: $wgUseRCPatrol |
in
| MediaWiki has a page about this at: LocalSettings.php |
to false.
$wgUseRCPatrol = false;
[edit] Permissions
[edit] 1.4
In MediaWiki 1.4, patrolled edits are enabled for all users. To restrict this to sysops, set $wgOnlySysopsCanPatrol in
| MediaWiki has a page about this at: LocalSettings.php |
to true.
$wgOnlySysopsCanPatrol = true;
[edit] 1.5+
In MediaWiki 1.5 and later, patrolled edits are enabled for sysops. Use the
| MediaWiki has a page about this at: $wgGroupPermissions |
configuration variable to assign this to new or existing user groups. See
| MediaWiki has a page about this at: Manual:User rights management |
.
For instance, to create a patrollers group:
$wgGroupPermissions['patrollers']['patrol'] = true;
[edit] Automatic patrolling
In MediaWiki 1.6 through 1.8, there is a user preference available to users who are able to mark edits as patrolled. When set, this causes their edits to be patrolled automatically.
This option is not available if the patrolled edits feature is switched off.
In MediaWiki 1.9 this user preference has been removed and replaced by a new "autopatrol" right, assigned only to sysops by default. Also, users cannot mark their own edits as patrolled.
[edit] Marker
The formatting of the unpatrolled edit marker can be altered using CSS. The exclamation mark displayed on the Recent changes log is styled using the span.unpatrolled class.
[edit] See also
| MediaWiki has a page about this at: Further reading on the Meta-Wiki |
| MediaWiki has a page about this at: Extension:FlaggedRevs |
