From 54dff6a5e543fb735e2673d0fe859476eca34e8f Mon Sep 17 00:00:00 2001 From: Matthew Flaschen Date: Thu, 2 Apr 2015 22:53:57 -0400 Subject: [PATCH] Have back-compat shim actually return the value Bug: T94958 Change-Id: I75fbd11c8bb357b83079402592e8863acef18fb1 --- includes/libs/normal/UtfNormalUtil.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/libs/normal/UtfNormalUtil.php b/includes/libs/normal/UtfNormalUtil.php index 38d740df7d..ad9a2b9a6c 100644 --- a/includes/libs/normal/UtfNormalUtil.php +++ b/includes/libs/normal/UtfNormalUtil.php @@ -37,7 +37,7 @@ use UtfNormal\Utils; * @deprecated since 1.25, use UtfNormal\Utils directly */ function codepointToUtf8( $codepoint ) { - Utils::codepointToUtf8( $codepoint ); + return Utils::codepointToUtf8( $codepoint ); } /** -- 2.20.1