Have back-compat shim actually return the value
authorMatthew Flaschen <mflaschen@wikimedia.org>
Fri, 3 Apr 2015 02:53:57 +0000 (22:53 -0400)
committerMatthew Flaschen <mflaschen@wikimedia.org>
Fri, 3 Apr 2015 02:54:31 +0000 (22:54 -0400)
Bug: T94958
Change-Id: I75fbd11c8bb357b83079402592e8863acef18fb1

includes/libs/normal/UtfNormalUtil.php

index 38d740d..ad9a2b9 100644 (file)
@@ -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 );
 }
 
 /**