فهرست منبع

[php7] fix HxString.toUpperCase()

Alexander Kuzmenko 8 سال پیش
والد
کامیت
7a66abf981
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      std/php7/Boot.hx

+ 1 - 1
std/php7/Boot.hx

@@ -627,7 +627,7 @@ private class HxEnum {
 private class HxString {
 
 	public static function toUpperCase( str:String ) : String {
-		return str.toUpperCase();
+		return Global.strtoupper(str);
 	}
 
 	public static function toLowerCase( str:String ) : String {