X-Git-Url: http://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2FDefaultSettings.php;h=a10c30b959ff06ab29b93eeb19d2b7429bb8b586;hp=31cb7ae37c30bd8f9d04420ad849111bc65352a6;hb=6170b0c2638fa6326a9dec2aeb4836ddac016b85;hpb=72e141a5e33417a3f4bcb18cf8a862634bda9bee diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 31cb7ae37c..a10c30b959 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -72,7 +72,7 @@ $wgConfigRegistry = [ * MediaWiki version number * @since 1.2 */ -$wgVersion = '1.34.0-alpha'; +$wgVersion = '1.34.0-rc.1'; /** * Name of the site. It must be changed in LocalSettings.php @@ -95,15 +95,14 @@ $wgAssumeProxiesUseDefaultProtocolPorts = true; * $wgServer = 'http://example.com'; * @endcode * - * This is usually detected correctly by MediaWiki. If MediaWiki detects the - * wrong server, it will redirect incorrectly after you save a page. In that - * case, set this variable to fix it. + * This must be set in LocalSettings.php. The MediaWiki installer does this + * automatically since 1.18. * * If you want to use protocol-relative URLs on your wiki, set this to a * protocol-relative URL like '//example.com' and set $wgCanonicalServer * to a fully qualified URL. */ -$wgServer = WebRequest::detectServer(); +$wgServer = false; /** * Canonical URL of the server, to use in IRC feeds and notification e-mails. @@ -2627,6 +2626,8 @@ $wgLocalisationCacheConf = [ 'store' => 'detect', 'storeClass' => false, 'storeDirectory' => false, + 'storeServer' => [], + 'forceRecache' => false, 'manualRecache' => false, ]; @@ -6152,9 +6153,8 @@ $wgDebugComments = false; * Write SQL queries to the debug log. * * This setting is only used $wgLBFactoryConf['class'] is set to - * '\Wikimedia\Rdbms\LBFactorySimple' and $wgDBservers is an empty array; otherwise - * the DBO_DEBUG flag must be set in the 'flags' option of the database - * connection to achieve the same functionality. + * '\Wikimedia\Rdbms\LBFactorySimple'; otherwise the DBO_DEBUG flag must be set in + * the 'flags' option of the database connection to achieve the same functionality. */ $wgDebugDumpSql = false; @@ -8682,7 +8682,7 @@ $wgHttpsPort = 443; $wgSessionSecret = false; /** - * If for some reason you can't install the PHP OpenSSL or mcrypt extensions, + * If for some reason you can't install the PHP OpenSSL extension, * you can set this to true to make MediaWiki work again at the cost of storing * sensitive session data insecurely. But it would be much more secure to just * install the OpenSSL extension.