From 6bbd71aa65623cde0c15b6181e0eedfd4b6f5e44 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Sun, 15 Mar 2015 18:33:09 -0700 Subject: [PATCH] Grant 'editcontentmodel' to all sysops by default This is the first step before this userright can be granted to everyone (or at least 'user'). There were a few issues with granting this permission at all on public wikis (tracked at T85847) which are now all fixed. Bug: T85847 Change-Id: Idcaaaaa5cc3fd7c3efca6c57698767689b9a1d09 --- includes/DefaultSettings.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 41bf42bb9d..4f27f12084 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -4875,6 +4875,7 @@ $wgGroupPermissions['sysop']['undelete'] = true; $wgGroupPermissions['sysop']['editinterface'] = true; $wgGroupPermissions['sysop']['editusercss'] = true; $wgGroupPermissions['sysop']['edituserjs'] = true; +$wgGroupPermissions['sysop']['editcontentmodel'] = true; $wgGroupPermissions['sysop']['import'] = true; $wgGroupPermissions['sysop']['importupload'] = true; $wgGroupPermissions['sysop']['move'] = true; -- 2.20.1