| Index: trunk/phase3/includes/DefaultSettings.php |
| — | — | @@ -1107,10 +1107,6 @@ |
| 1108 | 1108 | // Implicit group for accounts that pass $wgAutoConfirmAge |
| 1109 | 1109 | $wgGroupPermissions['autoconfirmed']['autoconfirmed'] = true; |
| 1110 | 1110 | |
| 1111 | | -// Implicit group for accounts with confirmed email addresses |
| 1112 | | -// This has little use when email address confirmation is off |
| 1113 | | -$wgGroupPermissions['emailconfirmed']['emailconfirmed'] = true; |
| 1114 | | - |
| 1115 | 1111 | // Users with bot privilege can have their edits hidden |
| 1116 | 1112 | // from various log pages by default |
| 1117 | 1113 | $wgGroupPermissions['bot' ]['bot'] = true; |
| — | — | @@ -1261,7 +1257,6 @@ |
| 1262 | 1258 | array( APCOND_EDITCOUNT, &$wgAutoConfirmCount ), |
| 1263 | 1259 | array( APCOND_AGE, &$wgAutoConfirmAge ), |
| 1264 | 1260 | ), |
| 1265 | | - 'emailconfirmed' => APCOND_EMAILCONFIRMED, |
| 1266 | 1261 | ); |
| 1267 | 1262 | |
| 1268 | 1263 | /** |
| — | — | @@ -3047,4 +3042,4 @@ |
| 3048 | 3043 | * maintenance/generateSitemap.php script is run, or false |
| 3049 | 3044 | * if one is to be generated for all namespaces. |
| 3050 | 3045 | */ |
| 3051 | | -$wgSitemapNamespaces = false; |
| \ No newline at end of file |
| | 3046 | +$wgSitemapNamespaces = false; |
| Index: trunk/phase3/RELEASE-NOTES |
| — | — | @@ -30,6 +30,9 @@ |
| 31 | 31 | $wgUserNotifiedOnAllChanges |
| 32 | 32 | * (bug 12860) New option $wgSitemapNamespaces allows sitemaps to be generated |
| 33 | 33 | for only some namespaces |
| | 34 | +* Removed the emailconfirmed implicit group by default. To re-add it, use: |
| | 35 | + $wgAutopromote['emailconfirmed'] = APCOND_EMAILCONFIRMED; |
| | 36 | + in your LocalSettings.php. |
| 34 | 37 | |
| 35 | 38 | === New features in 1.13 === |
| 36 | 39 | |