From c5b5e4509a0fbe2c1e79376c1900899848565d96 Mon Sep 17 00:00:00 2001 From: "This, that and the other" Date: Sat, 15 Feb 2014 11:04:24 +1100 Subject: [PATCH] Deprecate wgSkipSkin in favor of wgSkipSkins Per comments at https://gerrit.wikimedia.org/r/#/c/110162/5/includes/DefaultSettings.php Change-Id: I47e891464c9955e2ea8c655c8e2e19cb09f55baa --- RELEASE-NOTES-1.23 | 2 ++ includes/DefaultSettings.php | 2 ++ 2 files changed, 4 insertions(+) diff --git a/RELEASE-NOTES-1.23 b/RELEASE-NOTES-1.23 index b16276bfdd..f07fbbb15e 100644 --- a/RELEASE-NOTES-1.23 +++ b/RELEASE-NOTES-1.23 @@ -34,6 +34,8 @@ production. * The 'max threads' setting was removed from $wgDBservers. * Support for AdminSettings.php has been completely removed. All configuration belongs in LocalSettings.php. +* $wgSkipSkin, which has been replaceable by $wgSkipSkins since 2005 (r9249), is + now formally deprecated. === New features in 1.23 === * ResourceLoader can utilize the Web Storage API to cache modules client-side. diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index dd76a048d8..34bb191708 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -2908,6 +2908,8 @@ $wgDefaultSkin = 'vector'; * Specify the name of a skin that should not be presented in the list of * available skins. Use for blacklisting a skin which you do not want to * remove from the .../skins/ directory + * + * @deprecated since 1.23; use $wgSkipSkins instead */ $wgSkipSkin = ''; -- 2.20.1