1
0
mirror of synced 2025-03-05 04:13:20 +03:00
Ticket: 250
This commit is contained in:
romanb 2006-12-29 21:52:42 +00:00
parent 9d87bb45f4
commit 4650a38da2

View File

@ -48,6 +48,6 @@ class Doctrine_Validator_Date
if (count($e) !== 3) { if (count($e) !== 3) {
return false; return false;
} }
return checkdate($e[1], $e[0], $e[2]); return checkdate($e[1], $e[2], $e[0]);
} }
} }