Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -1112,7 +1112,6 @@ |
1113 | 1113 | 'right-reset-passwords', |
1114 | 1114 | 'right-override-export-depth', |
1115 | 1115 | 'right-versiondetail', |
1116 | | - 'right-root', |
1117 | 1116 | 'right-sendemail', |
1118 | 1117 | ), |
1119 | 1118 | 'rightslog' => array( |
Index: trunk/phase3/includes/User.php |
— | — | @@ -2154,8 +2154,7 @@ |
2155 | 2155 | } |
2156 | 2156 | # Use strict parameter to avoid matching numeric 0 accidentally inserted |
2157 | 2157 | # by misconfiguration: 0 == 'foo' |
2158 | | - return in_array( $action, $this->getRights(), true ) |
2159 | | - || in_array( 'root', $this->getRights(), true ); |
| 2158 | + return in_array( $action, $this->getRights(), true ); |
2160 | 2159 | } |
2161 | 2160 | |
2162 | 2161 | /** |
Index: trunk/phase3/languages/messages/MessagesQqq.php |
— | — | @@ -1367,8 +1367,6 @@ |
1368 | 1368 | 'right-versiondetail' => '{{doc-right|versiondetail}} |
1369 | 1369 | |
1370 | 1370 | Users having this right receive more detailed information on [[Special:Version]].', |
1371 | | -'right-root' => "{{doc-right|root}} |
1372 | | -Analogous to the 'root' permission on Unix systems, allows the user to perform ''any'' action on the wiki; effectively granting them all other permissions.", |
1373 | 1371 | 'right-sendemail' => '{{doc-right}}', |
1374 | 1372 | |
1375 | 1373 | # User rights log |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -1932,7 +1932,6 @@ |
1933 | 1933 | 'right-reset-passwords' => "Reset other users' passwords", |
1934 | 1934 | 'right-override-export-depth' => 'Export pages including linked pages up to a depth of 5', |
1935 | 1935 | 'right-versiondetail' => 'Show the extended software version information', |
1936 | | -'right-root' => 'Perform all actions on the wiki', |
1937 | 1936 | 'right-sendemail' => 'Send e-mail to other users', |
1938 | 1937 | |
1939 | 1938 | # User rights log |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -232,9 +232,6 @@ |
233 | 233 | $wgAJAXCategoriesNamespaces. |
234 | 234 | * Admins could disable some variants using $wgDisabledVariants now. ONLY apply |
235 | 235 | on wikis enabled LanguageConverter. |
236 | | -* A new permission, 'root', is created. Analogous to root users on Unix |
237 | | - systems, the root permission effectively grants all other permissions on a |
238 | | - wiki. Useful for debugging and administration. |
239 | 236 | * New configuration variable $wgShowPageOnRedlink that can be set to show the |
240 | 237 | page instead of an edit interface when visiting a red link. The value can be |
241 | 238 | specified for specific usergroups and namespaces. |