Declare and document $wgStatsdServer and $wgStatsdMetricPrefix
[lhc/web/wiklou.git] / includes / libs / normal / UtfNormalUtil.php
index a93a304..ad9a2b9 100644 (file)
@@ -26,7 +26,7 @@
  */
 
 
-use Utfnormal\Utils;
+use UtfNormal\Utils;
 /**
  * Return UTF-8 sequence for a given Unicode code point.
  *
@@ -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 );
 }
 
 /**