Merge "SiteConfiguration: Remove deprecated 'localVHosts' member"
This commit is contained in:
commit
558e097420
2 changed files with 3 additions and 11 deletions
|
|
@ -243,6 +243,8 @@ because of Phabricator reports.
|
|||
Construct WANObjectCache directly instead, or use MediaWikiServices.
|
||||
* (T231366) The ProfilerOutputDb class and profileinfo.php entry point,
|
||||
deprecated in 1.34, was removed.
|
||||
* SiteConfiguration->localVHosts, deprecated in 1.25, was removed.
|
||||
Use $wgLocalVirtualHosts instead.
|
||||
* ApiQueryUserInfo::getBlockInfo, deprecated in 1.34, was removed. Use
|
||||
ApiBlockInfoTrait::getBlockDetails instead.
|
||||
* Password::equals(), deprecated in 1.33, was removed. Use Password::verify().
|
||||
|
|
|
|||
|
|
@ -115,11 +115,8 @@ use MediaWiki\Shell\Shell;
|
|||
* same for all wikis or can be correctly determined by the logic in
|
||||
* Setup.php.
|
||||
*
|
||||
* @todo Give examples for,
|
||||
* suffixes:
|
||||
* @todo Give examples for suffixes:
|
||||
* $conf->suffixes = [ 'wiki' ];
|
||||
* localVHosts
|
||||
* callbacks!
|
||||
*/
|
||||
class SiteConfiguration {
|
||||
|
||||
|
|
@ -138,13 +135,6 @@ class SiteConfiguration {
|
|||
*/
|
||||
public $settings = [];
|
||||
|
||||
/**
|
||||
* Array of domains that are local and can be handled by the same server
|
||||
*
|
||||
* @deprecated since 1.25; use $wgLocalVirtualHosts instead.
|
||||
*/
|
||||
public $localVHosts = [];
|
||||
|
||||
/**
|
||||
* Optional callback to load full configuration data.
|
||||
* @var string|array
|
||||
|
|
|
|||
Loading…
Reference in a new issue