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 = 'editprotected'; |
| 1199 | + $right = 'protect'; |
1200 | 1200 | } |
1201 | 1201 | if( '' != $right && !$user->isAllowed( $right ) ) { |
1202 | 1202 | $errors[] = array( 'protectedpagetext', $right ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -21,9 +21,6 @@ |
22 | 22 | === Configuration changes in 1.13 === |
23 | 23 | |
24 | 24 | * New option $wgFeed can be set false to turn off syndication feeds |
25 | | -* (bug 13137) Allow setting 'editprotected' right separately from 'protect', |
26 | | - so groups may optionally edit protected pages without being able to protect |
27 | | - pages themselves |
28 | 25 | |
29 | 26 | === New features in 1.13 === |
30 | 27 | |