Kill off $wgLocalInterwiki

Change-Id: I07e44d1384138704eea979263e45a9853a0ae621
This commit is contained in:
Reedy 2020-03-07 21:44:46 +00:00
parent 8fbce45219
commit c030dacfbe
3 changed files with 1 additions and 13 deletions

View file

@ -85,6 +85,7 @@ For notes on 1.34.x and older releases, see HISTORY.
* $wgAllowTitlesInSVG, unused and deprecated since 1.34, was removed.
* $wgEnablePartialBlocks - This setting, deprecated when it was added in 1.33,
was removed. Partial blocks are now always enabled.
* $wgLocalInterwiki, deprecated in 1.23 has been removed.
* …
=== New user-facing features in 1.35 ===

View file

@ -3949,13 +3949,6 @@ $wgNamespaceAliases = [];
*/
$wgLegalTitleChars = " %!\"$&'()*,\\-.\\/0-9:;=?@A-Z\\\\^_`a-z~\\x80-\\xFF+";
/**
* The interwiki prefix of the current wiki, or false if it doesn't have one.
*
* @deprecated since 1.23; use $wgLocalInterwikis instead
*/
$wgLocalInterwiki = false;
/**
* Array for multiple $wgLocalInterwiki values, in case there are several
* interwiki prefixes that point to the current wiki. If $wgLocalInterwiki is

View file

@ -386,12 +386,6 @@ unset( $rcMaxAgeDays );
$wgSkipSkins[] = 'fallback';
$wgSkipSkins[] = 'apioutput';
if ( $wgLocalInterwiki ) {
// Hard deprecated in 1.34.
wfDeprecated( '$wgLocalInterwiki  use $wgLocalInterwikis instead', '1.23' );
array_unshift( $wgLocalInterwikis, $wgLocalInterwiki );
}
// Set default shared prefix
if ( $wgSharedPrefix === false ) {
$wgSharedPrefix = $wgDBprefix;