From ba3ced83a4c98d12cae36ad6c7ddda61e0a36e17 Mon Sep 17 00:00:00 2001 From: Max Semenik Date: Thu, 12 Oct 2017 19:38:26 -0700 Subject: [PATCH] Hard deprecate wfBaseConvert() No callers anywhere. Change-Id: If804d1153ca8e9e82eda3af4d992e395ab112158 --- includes/GlobalFunctions.php | 1 + 1 file changed, 1 insertion(+) 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 ); } -- 2.20.1