Browse Source

[php7] fix HxString.toUpperCase()

Alexander Kuzmenko 8 năm trước cách đây
mục cha
commit
7a66abf981
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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 {