Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -3341,7 +3341,6 @@ |
3342 | 3342 | $wgGroupPermissions['sysop']['protect'] = true; |
3343 | 3343 | $wgGroupPermissions['sysop']['proxyunbannable'] = true; |
3344 | 3344 | $wgGroupPermissions['sysop']['rollback'] = true; |
3345 | | -$wgGroupPermissions['sysop']['trackback'] = true; |
3346 | 3345 | $wgGroupPermissions['sysop']['upload'] = true; |
3347 | 3346 | $wgGroupPermissions['sysop']['reupload'] = true; |
3348 | 3347 | $wgGroupPermissions['sysop']['reupload-shared'] = true; |
— | — | @@ -3358,6 +3357,7 @@ |
3359 | 3358 | $wgGroupPermissions['sysop']['unblockself'] = true; |
3360 | 3359 | $wgGroupPermissions['sysop']['suppressredirect'] = true; |
3361 | 3360 | #$wgGroupPermissions['sysop']['mergehistory'] = true; |
| 3361 | +#$wgGroupPermissions['sysop']['trackback'] = true; |
3362 | 3362 | |
3363 | 3363 | // Permission to change users' group assignments |
3364 | 3364 | $wgGroupPermissions['bureaucrat']['userrights'] = true; |
— | — | @@ -3975,6 +3975,8 @@ |
3976 | 3976 | /** |
3977 | 3977 | * Support blog-style "trackbacks" for articles. See |
3978 | 3978 | * http://www.sixapart.com/pronet/docs/trackback_spec for details. |
| 3979 | + * |
| 3980 | + * If enabling this, you also need to grant the 'trackback' right to a group |
3979 | 3981 | */ |
3980 | 3982 | $wgUseTrackbacks = false; |
3981 | 3983 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -62,6 +62,8 @@ |
63 | 63 | becomes "check to block logged-in users too". The default settings remain the same. |
64 | 64 | * Most of the field names on the Special:Block form have been changed, which will |
65 | 65 | probably break screen-scraping bots. |
| 66 | +* The 'trackback' right is no longer granted to sysops by default. $wgUseTrackbacks |
| 67 | + is already false by default |
66 | 68 | |
67 | 69 | === New features in 1.18 === |
68 | 70 | * Added a special page, disabled by default, that allows users with the |