Comment out wfDeprecated() call in User::getSkin(), there's over 300 uses in /trunk
authorAntoine Musso <hashar@users.mediawiki.org>
Wed, 14 Dec 2011 13:00:30 +0000 (13:00 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Wed, 14 Dec 2011 13:00:30 +0000 (13:00 +0000)
reverts r106174

includes/User.php

index 0940766..ff8d1c6 100644 (file)
@@ -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' );
+               //wfDeprecated( __METHOD__, '1.18' );
                return RequestContext::getMain()->getSkin();
        }