From 53b6fc700029721891de413e4af34ae5db41256e Mon Sep 17 00:00:00 2001 From: Daniel Friesen Date: Wed, 15 Aug 2012 11:21:07 -0700 Subject: [PATCH] Set $wgUseCombinedLoginLink to false by default. See: http://thread.gmane.org/gmane.science.linguistics.wikipedia.technical/61489 Change-Id: I5a6761b5648d36581848372e456832ef15e097b4 --- RELEASE-NOTES-1.20 | 2 ++ includes/DefaultSettings.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES-1.20 b/RELEASE-NOTES-1.20 index bd65108888..6f0da7e46a 100644 --- a/RELEASE-NOTES-1.20 +++ b/RELEASE-NOTES-1.20 @@ -27,6 +27,8 @@ upgrade PHP if you have not done so prior to upgrading MediaWiki. different timezone than the wiki timezone set by $wgLocaltimezone. * New variables $wgDBssl and $wgDBcompress to enable SSL and compression for database connections, if either are available for the selected DB type. +* $wgUseCombinedLoginLink now defaults to false, making MediaWiki output separate + login and create account links by default. === New features in 1.20 === * Added TitleIsAlwaysKnown hook which gets called when determining if a page exists. diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index c65d13338a..ac4ee04132 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -2711,7 +2711,7 @@ $wgFooterIcons = array( * - true = use a combined login / create account link * - false = split login and create account into two separate links */ -$wgUseCombinedLoginLink = true; +$wgUseCombinedLoginLink = false; /** * Search form behavior for Vector skin only. -- 2.20.1