Unverified Commit d4afdba8 authored by Adam Cozzette's avatar Adam Cozzette Committed by GitHub

Merge pull request #4147 from datacompboy/patch-1

Fix ValidateDateTime: check day instead month
parents bab843b8 473c5cff
......@@ -80,9 +80,9 @@ bool ValidateDateTime(const DateTime& time) {
return false;
}
if (time.month == 2 && IsLeapYear(time.year)) {
return time.month <= kDaysInMonth[time.month] + 1;
return time.day <= kDaysInMonth[time.month] + 1;
} else {
return time.month <= kDaysInMonth[time.month];
return time.day <= kDaysInMonth[time.month];
}
}
......
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