Hard-deprecate wgLocalInterwiki, deprecated in 1.23

Change-Id: Ib18c3122c4d9b8a50d314f67004cc73b8c14d40e
This commit is contained in:
James D. Forrester 2019-07-12 16:40:51 -07:00 committed by MaxSem
parent fe412e0c6a
commit be07389e2a
2 changed files with 4 additions and 0 deletions

View file

@ -54,6 +54,8 @@ For notes on 1.33.x and older releases, see HISTORY.
that were changed above.
* $wgSkipSkin — Setting this instead of $wgSkipSkins, deprecated in 1.23, is now
hard-deprecated.
* $wgLocalInterwiki — Setting this instead of $wgLocalInterwikis, deprecated in
1.23, is now hard-deprecated.
* …
==== Removed configuration ====

View file

@ -402,6 +402,8 @@ $wgSkipSkins[] = 'fallback';
$wgSkipSkins[] = 'apioutput';
if ( $wgLocalInterwiki ) {
// Hard deprecated in 1.34.
wfDeprecated( '$wgLocalInterwiki  use $wgLocalInterwikis instead', '1.23' );
array_unshift( $wgLocalInterwikis, $wgLocalInterwiki );
}