From d79428b785d11a056ade859eff7f5a31df764cbd Mon Sep 17 00:00:00 2001 From: "C. Scott Ananian" Date: Wed, 13 Jun 2018 13:48:02 -0400 Subject: [PATCH] Hard deprecate a trio of functions from Language.php These have been soft deprecated since 1.28; let's start the process of actually removing them. Change-Id: I33bb6f501e5df419683d06fb9e4516fddc03741b --- languages/Language.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/languages/Language.php b/languages/Language.php index d762a5752c..1623c36129 100644 --- a/languages/Language.php +++ b/languages/Language.php @@ -2952,6 +2952,7 @@ class Language { * @deprecated No-op since 1.28 */ function initEncoding() { + wfDeprecated( __METHOD__, '1.28' ); // No-op. } @@ -2961,6 +2962,7 @@ class Language { * @deprecated No-op since 1.28 */ function recodeForEdit( $s ) { + wfDeprecated( __METHOD__, '1.28' ); return $s; } @@ -2970,6 +2972,7 @@ class Language { * @deprecated No-op since 1.28 */ function recodeInput( $s ) { + wfDeprecated( __METHOD__, '1.28' ); return $s; } -- 2.20.1