Commit 4650a38d authored by romanb's avatar romanb

Fixes #250.

Ticket: 250
parent 9d87bb45
......@@ -48,6 +48,6 @@ class Doctrine_Validator_Date
if (count($e) !== 3) {
return false;
}
return checkdate($e[1], $e[0], $e[2]);
return checkdate($e[1], $e[2], $e[0]);
}
}
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