From: Alexandre Emsenhuber Date: Mon, 12 Sep 2011 16:29:21 +0000 (+0000) Subject: Turn ParserOptions::setSkin() into a no-op since mSkin is no more used X-Git-Tag: 1.31.0-rc.0~27712 X-Git-Url: https://git.cyclocoop.org/%27.%24link.%27?a=commitdiff_plain;h=077d6e218f6e60773f75d6f5112cd737e89aaa56;p=lhc%2Fweb%2Fwiklou.git Turn ParserOptions::setSkin() into a no-op since mSkin is no more used --- 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 ); }