From: Daniel Friesen Date: Wed, 15 Aug 2012 18:21:07 +0000 (-0700) Subject: Set $wgUseCombinedLoginLink to false by default. X-Git-Tag: 1.31.0-rc.0~22383 X-Git-Url: http://git.cyclocoop.org///%22%40url%40//%22?a=commitdiff_plain;h=53b6fc700029721891de413e4af34ae5db41256e;p=lhc%2Fweb%2Fwiklou.git Set $wgUseCombinedLoginLink to false by default. See: http://thread.gmane.org/gmane.science.linguistics.wikipedia.technical/61489 Change-Id: I5a6761b5648d36581848372e456832ef15e097b4 --- 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.