From: Kunal Mehta Date: Sun, 13 Apr 2014 01:48:42 +0000 (-0700) Subject: Fix deprecation notice for Skin::getUsableSkins to say 1.23 X-Git-Tag: 1.31.0-rc.0~16239^2 X-Git-Url: http://git.cyclocoop.org/%22.%28%24lien.?a=commitdiff_plain;h=a5e8f87875534cd3bea69c6d04e2e2108c36cde0;p=lhc%2Fweb%2Fwiklou.git Fix deprecation notice for Skin::getUsableSkins to say 1.23 Follows-up: I0b0fdfb5615c22aa876882c3ca344ebb1f10c4bd Change-Id: Iafd03d562ec68edbef2479f8275f8f7a09fdbc7a --- diff --git a/includes/Skin.php b/includes/Skin.php index 0f89dd2355..e6abdfb6fb 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -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(); }