From: C. Scott Ananian Date: Wed, 13 Jun 2018 17:48:02 +0000 (-0400) Subject: Hard deprecate a trio of functions from Language.php X-Git-Tag: 1.34.0-rc.0~5076^2 X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=commitdiff_plain;h=d79428b785d11a056ade859eff7f5a31df764cbd 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 --- 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; }