From: Bartosz DziewoƄski Date: Mon, 26 May 2014 10:27:02 +0000 (+0200) Subject: Skin: Remove dried up remains of Standard/Classic skin X-Git-Tag: 1.31.0-rc.0~15548^2 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dcompta/operations/modifier.php?a=commitdiff_plain;h=0f881fd367189157b843b77709a98df72ea2ffc9;p=lhc%2Fweb%2Fwiklou.git Skin: Remove dried up remains of Standard/Classic skin Change-Id: I70a35cbe0d17bf8d35bbe04b1254ee0d6ce0accd --- 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 ) {