From: Matthew Flaschen Date: Fri, 3 Apr 2015 02:53:57 +0000 (-0400) Subject: Have back-compat shim actually return the value X-Git-Tag: 1.31.0-rc.0~11862 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=54dff6a5e543fb735e2673d0fe859476eca34e8f;p=lhc%2Fweb%2Fwiklou.git Have back-compat shim actually return the value Bug: T94958 Change-Id: I75fbd11c8bb357b83079402592e8863acef18fb1 --- 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 ); } /**