From: Sam Reed Date: Wed, 14 Dec 2011 12:54:35 +0000 (+0000) Subject: Comment out wfDeprecated() call in User::getSkin(), there's over 300 uses in /trunk X-Git-Tag: 1.31.0-rc.0~25972 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=649d7f84d7f2f6245371594f472b1af1c4eb1d0a;p=lhc%2Fweb%2Fwiklou.git Comment out wfDeprecated() call in User::getSkin(), there's over 300 uses in /trunk Follows up some (cba to find) rev --- diff --git a/includes/User.php b/includes/User.php index 0940766dce..f01154c87e 100644 --- a/includes/User.php +++ b/includes/User.php @@ -2594,7 +2594,7 @@ class User { * @deprecated since 1.18 Use ->getSkin() in the most relevant outputting context you have */ public function getSkin() { - wfDeprecated( __METHOD__, '1.18' ); + //swfDeprecated( __METHOD__, '1.18' ); return RequestContext::getMain()->getSkin(); }