From a5e8f87875534cd3bea69c6d04e2e2108c36cde0 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Sat, 12 Apr 2014 18:48:42 -0700 Subject: [PATCH] Fix deprecation notice for Skin::getUsableSkins to say 1.23 Follows-up: I0b0fdfb5615c22aa876882c3ca344ebb1f10c4bd Change-Id: Iafd03d562ec68edbef2479f8275f8f7a09fdbc7a --- includes/Skin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); } -- 2.20.1