From: Aaron Schulz Date: Wed, 9 Jul 2014 00:22:27 +0000 (-0700) Subject: Give "mergehistory" to sysops X-Git-Tag: 1.31.0-rc.0~15029 X-Git-Url: https://git.heureux-cyclage.org/?a=commitdiff_plain;h=8c1932eba1606fc93c3493bc4d26a89a643a26ec;p=lhc%2Fweb%2Fwiklou.git Give "mergehistory" to sysops Follows-up cf8e994053af and 9b070bf461ddf1 (r27823). Bug: 66155 Change-Id: Iaaa30afbdc834faf0fb5f68bc82c7d8aef8fcec8 --- diff --git a/RELEASE-NOTES-1.24 b/RELEASE-NOTES-1.24 index 3ce182eb67..70f6084b6f 100644 --- a/RELEASE-NOTES-1.24 +++ b/RELEASE-NOTES-1.24 @@ -32,6 +32,7 @@ production. * $wgCountTotalSearchHits has been removed. If you're concerned about efficiency of search, you should use something like CirrusSearch instead of built in search. +* Users in the 'sysop' group have access to Special:MergeHistory by default. === New features in 1.24 === * Added a new hook, "WhatLinksHereProps", to allow extensions to annotate diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 05c76964b2..51ebd57bae 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -4397,7 +4397,7 @@ $wgGroupPermissions['sysop']['unblockself'] = true; $wgGroupPermissions['sysop']['suppressredirect'] = true; #$wgGroupPermissions['sysop']['pagelang'] = true; #$wgGroupPermissions['sysop']['upload_by_url'] = true; -#$wgGroupPermissions['sysop']['mergehistory'] = true; +$wgGroupPermissions['sysop']['mergehistory'] = true; // Permission to change users' group assignments $wgGroupPermissions['bureaucrat']['userrights'] = true;