Commit 40508355 authored by konovalovsergey's avatar konovalovsergey

fix bug 33839

parent 5a8eb389
...@@ -3558,7 +3558,7 @@ FormatParser.prototype = ...@@ -3558,7 +3558,7 @@ FormatParser.prototype =
else else
dValue = (Date.UTC(nYear,nMounth,nDay,nHour,nMinute,nSecond) - Date.UTC(1899,11,31,0,0,0)) / (86400 * 1000); dValue = (Date.UTC(nYear,nMounth,nDay,nHour,nMinute,nSecond) - Date.UTC(1899,11,31,0,0,0)) / (86400 * 1000);
} }
if(dValue > 0) if(dValue >= 0)
{ {
var sFormat; var sFormat;
if(true == bDate && true == bTime) if(true == bDate && true == bTime)
...@@ -3587,7 +3587,7 @@ FormatParser.prototype = ...@@ -3587,7 +3587,7 @@ FormatParser.prototype =
}, },
isValidDate : function(nYear, nMounth, nDay) isValidDate : function(nYear, nMounth, nDay)
{ {
if(nYear < 1900) if(nYear < 1900 && !(1899 === nYear && 11 == nMounth && 31 == nDay))
return false; return false;
else else
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment