Hard-deprecate wgLocalInterwiki, deprecated in 1.23
authorJames D. Forrester <jforrester@wikimedia.org>
Fri, 12 Jul 2019 23:40:51 +0000 (16:40 -0700)
committerMaxSem <maxsem.wiki@gmail.com>
Wed, 17 Jul 2019 01:22:01 +0000 (01:22 +0000)
Change-Id: Ib18c3122c4d9b8a50d314f67004cc73b8c14d40e

RELEASE-NOTES-1.34
includes/Setup.php

index f1141ad..69b2088 100644 (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 ====
index 5b56dad..71136e0 100644 (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 );
 }