瀏覽代碼

Fix parse, year < 100

Pascal Peridont 17 年之前
父節點
當前提交
a02b60114e
共有 1 個文件被更改,包括 5 次插入0 次删除
  1. 5 0
      std/mtwin/DateFormat.hx

+ 5 - 0
std/mtwin/DateFormat.hx

@@ -90,6 +90,11 @@ class DateFormat {
 			return null;
 		}
 
+		if( y < 50 )
+			y += 2000;
+		else if( y < 100 )
+			y += 1900;
+
 		if( REG_HOUR.match(str) ){
 			h = Std.parseInt(REG_HOUR.matched(1));
 			i = Std.parseInt(REG_HOUR.matched(2));