diff options
Diffstat (limited to 'includes/SiteConfiguration.php')
-rw-r--r-- | includes/SiteConfiguration.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/includes/SiteConfiguration.php b/includes/SiteConfiguration.php index 8c1f26b8..c3b1a6ac 100644 --- a/includes/SiteConfiguration.php +++ b/includes/SiteConfiguration.php @@ -133,6 +133,8 @@ class SiteConfiguration { /** * Array of domains that are local and can be handled by the same server + * + * @deprecated since 1.25; use $wgLocalVirtualHosts instead. */ public $localVHosts = array(); @@ -565,6 +567,8 @@ class SiteConfiguration { /** * Returns true if the given vhost is handled locally. + * + * @deprecated since 1.25; check if the host is in $wgLocalVirtualHosts instead. * @param string $vhost * @return bool */ |