MediaWiki r33800 - Code Review

Jump to: navigation, search
Repository:MediaWiki
Revision:r33799‎ | r33800 (on ViewVC)‎ | r33801 >
Date:00:49, 24 April 2008
Author:tstarling
Status:old
Tags:
Comment:
Removed the emailconfirmed group by default, since it is slow when combined with CentralAuth, and not actually used anywhere in the MediaWiki core or Wikimedia.
Modified paths:

Diff [purge]

Index: trunk/phase3/includes/DefaultSettings.php
@@ -1107,10 +1107,6 @@
11081108 // Implicit group for accounts that pass $wgAutoConfirmAge
11091109 $wgGroupPermissions['autoconfirmed']['autoconfirmed'] = true;
11101110
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 -
11151111 // Users with bot privilege can have their edits hidden
11161112 // from various log pages by default
11171113 $wgGroupPermissions['bot' ]['bot'] = true;
@@ -1261,7 +1257,6 @@
12621258 array( APCOND_EDITCOUNT, &$wgAutoConfirmCount ),
12631259 array( APCOND_AGE, &$wgAutoConfirmAge ),
12641260 ),
1265 - 'emailconfirmed' => APCOND_EMAILCONFIRMED,
12661261 );
12671262
12681263 /**
@@ -3047,4 +3042,4 @@
30483043 * maintenance/generateSitemap.php script is run, or false
30493044 * if one is to be generated for all namespaces.
30503045 */
3051 -$wgSitemapNamespaces = false;
\ No newline at end of file
 3046+$wgSitemapNamespaces = false;
Index: trunk/phase3/RELEASE-NOTES
@@ -30,6 +30,9 @@
3131 $wgUserNotifiedOnAllChanges
3232 * (bug 12860) New option $wgSitemapNamespaces allows sitemaps to be generated
3333 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.
3437
3538 === New features in 1.13 ===
3639

Follow-up revisions

Rev.Commit summaryAuthorDate
r33987Remove 'emailconfirmed' related messages per removal of this group with r33800.raymond19:04, 28 April 2008

Status & tagging log

  • 15:26, 12 September 2011 Meno25 (talk | contribs) changed the status of r33800 [removed: ok added: old]