Index: trunk/phase3/HISTORY |
— | — | @@ -19,8 +19,6 @@ |
20 | 20 | === Configuration changes in 1.17 === |
21 | 21 | * DatabaseFunctions.php that was needed for compatibility with pre-1.3 |
22 | 22 | extensions has been removed. |
23 | | -* $wgLogAutocreatedAccounts controls whether autocreation of accounts is logged |
24 | | - to new users log. |
25 | 23 | * $wgAllowImageTag can be set to true to whitelist the <img> tag in wikitext. |
26 | 24 | * (bug 12797) Add $wgGalleryOptions for adjusting of default gallery display |
27 | 25 | options. |
Index: trunk/phase3/includes/User.php |
— | — | @@ -3699,8 +3699,8 @@ |
3700 | 3700 | * Used by things like CentralAuth and perhaps other authplugins. |
3701 | 3701 | */ |
3702 | 3702 | public function addNewUserLogEntryAutoCreate() { |
3703 | | - global $wgNewUserLog, $wgLogAutocreatedAccounts; |
3704 | | - if( !$wgNewUserLog || !$wgLogAutocreatedAccounts ) { |
| 3703 | + global $wgNewUserLog; |
| 3704 | + if( !$wgNewUserLog ) { |
3705 | 3705 | return true; // disabled |
3706 | 3706 | } |
3707 | 3707 | $log = new LogPage( 'newusers', false ); |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -4915,11 +4915,6 @@ |
4916 | 4916 | */ |
4917 | 4917 | $wgNewUserLog = true; |
4918 | 4918 | |
4919 | | -/** |
4920 | | - * Log the automatic creations of new users accounts? |
4921 | | - */ |
4922 | | -$wgLogAutocreatedAccounts = false; |
4923 | | - |
4924 | 4919 | /** @} */ # end logging } |
4925 | 4920 | |
4926 | 4921 | /*************************************************************************//** |