From: Max Semenik Date: Fri, 13 Oct 2017 02:38:26 +0000 (-0700) Subject: Hard deprecate wfBaseConvert() X-Git-Tag: 1.31.0-rc.0~1782^2 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/comptes/journal.php?a=commitdiff_plain;h=ba3ced83a4c98d12cae36ad6c7ddda61e0a36e17;p=lhc%2Fweb%2Fwiklou.git Hard deprecate wfBaseConvert() No callers anywhere. Change-Id: If804d1153ca8e9e82eda3af4d992e395ab112158 --- diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index d53e98dbe1..279fc95649 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -2684,6 +2684,7 @@ function wfRelativePath( $path, $from ) { function wfBaseConvert( $input, $sourceBase, $destBase, $pad = 1, $lowercase = true, $engine = 'auto' ) { + wfDeprecated( __FUNCTION__, '1.27' ); return Wikimedia\base_convert( $input, $sourceBase, $destBase, $pad, $lowercase, $engine ); }