Fix deprecation notice for Skin::getUsableSkins to say 1.23
authorKunal Mehta <legoktm@gmail.com>
Sun, 13 Apr 2014 01:48:42 +0000 (18:48 -0700)
committerParent5446 <tylerromeo@gmail.com>
Sun, 13 Apr 2014 14:02:12 +0000 (14:02 +0000)
Follows-up: I0b0fdfb5615c22aa876882c3ca344ebb1f10c4bd
Change-Id: Iafd03d562ec68edbef2479f8275f8f7a09fdbc7a

includes/Skin.php

index 0f89dd2..e6abdfb 100644 (file)
@@ -107,11 +107,11 @@ abstract class Skin extends ContextSource {
        }
 
        /**
-        * @deprecated since 1.22, use getAllowedSkins
+        * @deprecated since 1.23, use getAllowedSkins
         * @return string[]
         */
        public static function getUsableSkins() {
-               wfDeprecated( __METHOD__, '1.22' );
+               wfDeprecated( __METHOD__, '1.23' );
                return self::getAllowedSkins();
        }