Index: trunk/phase3/includes/Title.php |
— | — | @@ -1195,7 +1195,7 @@ |
1196 | 1196 | foreach( $this->getRestrictions($action) as $right ) { |
1197 | 1197 | // Backwards compatibility, rewrite sysop -> protect |
1198 | 1198 | if ( $right == 'sysop' ) { |
1199 | | - $right = 'protect'; |
| 1199 | + $right = 'editprotected'; |
1200 | 1200 | } |
1201 | 1201 | if( '' != $right && !$user->isAllowed( $right ) ) { |
1202 | 1202 | $errors[] = array( 'protectedpagetext', $right ); |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1132,6 +1132,7 @@ |
1133 | 1133 | $wgGroupPermissions['sysop']['patrol'] = true; |
1134 | 1134 | $wgGroupPermissions['sysop']['autopatrol'] = true; |
1135 | 1135 | $wgGroupPermissions['sysop']['protect'] = true; |
| 1136 | +$wgGroupPermissions['sysop']['editprotected'] = true; |
1136 | 1137 | $wgGroupPermissions['sysop']['proxyunbannable'] = true; |
1137 | 1138 | $wgGroupPermissions['sysop']['rollback'] = true; |
1138 | 1139 | $wgGroupPermissions['sysop']['trackback'] = true; |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -37,6 +37,7 @@ |
38 | 38 | * (bug 13084) Increase size of source/destination filename fields in upload form |
39 | 39 | * (bug 13115) rebuildrecentchanges should print the current value of $wgRCMaxAge |
40 | 40 | * (bug 13132) Unable to unprotect pages protected with earlier versions of MediaWiki |
| 41 | +* (bug 13137) Bots to edit protected pages |
41 | 42 | |
42 | 43 | === API changes in 1.13 === |
43 | 44 | |