From: Aaron Schulz Date: Thu, 29 Sep 2011 21:30:00 +0000 (+0000) Subject: FU r98412: added version to wfDeprecated call X-Git-Tag: 1.31.0-rc.0~27359 X-Git-Url: https://git.cyclocoop.org/%7B%7B%20url_for%28%27votes%27%2C%20votes=%27waiting%27%29%20%7D%7D?a=commitdiff_plain;h=87c7cf57f8c6027226a460bc3509a1c897b3a855;p=lhc%2Fweb%2Fwiklou.git FU r98412: added version to wfDeprecated call --- diff --git a/includes/parser/ParserOptions.php b/includes/parser/ParserOptions.php index d462df5d50..21b1cd889f 100644 --- a/includes/parser/ParserOptions.php +++ b/includes/parser/ParserOptions.php @@ -139,7 +139,7 @@ class ParserOptions { function setTidy( $x ) { return wfSetVar( $this->mTidy, $x ); } /** @deprecated in 1.19; will be removed in 1.20 */ - function setSkin( $x ) { wfDeprecated( __METHOD__ ); } + function setSkin( $x ) { wfDeprecated( __METHOD__, '1.19' ); } 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 ); }