Extension:EditSummary

From MediaWiki.org

Jump to: navigation, search

             

Manual on MediaWiki Extensions
List of MediaWiki Extensions
Crystal Clear action run.png
EditSummary

Release status: beta

Editeditsummary.png
Implementation  Special page, Database
Description Allows sysops (by default) to change the edit summaries of certain edits.
Author(s)  Soxred93Talk
Last Version  r44 (12-26-08)
MediaWiki  1.13+
License GPL
Download Subversion
Browse Code

check usage (experimental)

Contents

[edit] What can this extension do?

This extension allows sysops (by default) to edit the edit summary of any revision, or any user to edit their own edit summary. The extension adds a special page (Special:EditSummary) which allows users to edit edit summaries. It also adds a log page, to keep track of users who are editing summaries ("editsum").

[edit] Usage

Visit Special:EditSummary, and fill out the oldid of the revision. If necessary, fill out the new summary and/or a reason. Click submit.

[edit] Download instructions

Please cut and paste the code found in Subversion and place it in $IP/extensions/EditSummary/EditSummary.php. Note: $IP stands for the root directory of your MediaWiki installation, the same directory that holds LocalSettings.php.

[edit] Installation

To install this extension, add the following to LocalSettings.php:

require_once("$IP/extensions/EditSummary/EditSummary.php");

If you want to change who can edit summaries, use the code below.

$wgGroupPermissions['sysop']['editownsummary'] = true; //Only sysops can edit their own summary
$wgGroupPermissions['bureaucrat']['editsummary'] = true; //Only bureaucrats can edit everyone's summaries

[edit] User rights

  • editsummary - Allows a user to edit any summary
  • editownsummary - Allows a user to edit their own summary