From 0f881fd367189157b843b77709a98df72ea2ffc9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bartosz=20Dziewo=C5=84ski?= Date: Mon, 26 May 2014 12:27:02 +0200 Subject: [PATCH] Skin: Remove dried up remains of Standard/Classic skin Change-Id: I70a35cbe0d17bf8d35bbe04b1254ee0d6ce0accd --- includes/Skin.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/includes/Skin.php b/includes/Skin.php index 10502c2d01..06f39b1fc3 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -26,14 +26,13 @@ /** * The main skin class which provides methods and properties for all other skins. - * This base class is also the "Standard" skin. * * See docs/skin.txt for more information. * * @ingroup Skins */ abstract class Skin extends ContextSource { - protected $skinname = 'standard'; + protected $skinname = null; protected $mRelevantTitle = null; protected $mRelevantUser = null; @@ -119,8 +118,8 @@ abstract class Skin extends ContextSource { /** * Normalize a skin preference value to a form that can be loaded. * If a skin can't be found, it will fall back to the configured - * default (or the old 'Classic' skin if that's broken). - * @param string $key 'monobook', 'standard', etc. + * default, or the hardcoded default if that's broken. + * @param string $key 'monobook', 'vector', etc. * @return string */ static function normalizeKey( $key ) { @@ -160,7 +159,7 @@ abstract class Skin extends ContextSource { /** * Factory method for loading a skin of a given type - * @param string $key 'monobook', 'standard', etc. + * @param string $key 'monobook', 'vector', etc. * @return Skin */ static function &newFromKey( $key ) { -- 2.20.1