From 077d6e218f6e60773f75d6f5112cd737e89aaa56 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Mon, 12 Sep 2011 16:29:21 +0000 Subject: [PATCH] Turn ParserOptions::setSkin() into a no-op since mSkin is no more used --- includes/parser/ParserOptions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/parser/ParserOptions.php b/includes/parser/ParserOptions.php index baf60ed1e1..6b4eba0f3f 100644 --- a/includes/parser/ParserOptions.php +++ b/includes/parser/ParserOptions.php @@ -137,7 +137,7 @@ class ParserOptions { function setNumberHeadings( $x ) { return wfSetVar( $this->mNumberHeadings, $x ); } function setAllowSpecialInclusion( $x ) { return wfSetVar( $this->mAllowSpecialInclusion, $x ); } function setTidy( $x ) { return wfSetVar( $this->mTidy, $x ); } - function setSkin( $x ) { $this->mSkin = $x; } + function setSkin( $x ) {} function setInterfaceMessage( $x ) { return wfSetVar( $this->mInterfaceMessage, $x ); } function setTargetLanguage( $x ) { return wfSetVar( $this->mTargetLanguage, $x, true ); } function setMaxIncludeSize( $x ) { return wfSetVar( $this->mMaxIncludeSize, $x ); } -- 2.20.1