SinceMediaWiki 1.16, MediaWiki has a feature (disabled by default) that lets certain users show and hide individual page revisions. It also adds a special page calledSpecial:RevisionDelete.The code is inincludes/revisiondelete.

When a user with the 'deleterevision' permission (seeEnabling section) views a history page, they will see an extra button on the page that says "Change visibility of selected revisions". They will also see checkboxes next to all the revision entries on the page.If they select one or more revisions and click the button, they will be presented with an interface allowing them to do any of the following:
If they have the 'suppressrevision' permission, they will also be able to hide the information from sysops.
Similar functionality is also provided for log entries. The equivalent permissions are 'deletelogentry' and 'suppressionlog'.
Deleted revisions and events will still appear in the page history and logs, but parts of their content will be inaccessible to regular users.
For the technical part of this feature, seeBitfields for rev deleted.
To enable it, you have to set someuser rights inLocalSettings.php.
Example:
$wgGroupPermissions['sysop']['deleterevision']=true;$wgGroupPermissions['sysop']['deletelogentry']=true;
$wgGroupPermissions['oversight']['hideuser']=true;
$wgGroupPermissions['oversight']['suppressrevision']=true;$wgGroupPermissions['oversight']['suppressionlog']=true;
| MediaWiki version: | ≥ 1.24 Gerrit change 139277 |
$wgGroupPermissions['observers']['viewsuppressed']=true;
To assign the 'oversight' rights to users, log in as the site bureaucrat (Only bureaucrats can assign this role to other users, usually user with id #1 has it by default) and go to Special:UserRights.Enter the name of the user that you wish to make an Oversighter, and then check the "oversight" box.SeeManual:User rights for more information.