ZF-9349: Bug with day in fabruary
Description
<?php require_once 'lib/Zend/Date.php';
$date = new Zend_Date('1796-02-10');
print $date->get(Zend_Date::DATES);//will outputs 11.02.1796
print '
';
$date = new Zend_Date('1796-03-10');
print $date->get(Zend_Date::DATES);//will outputs 10.03.1796
Comments
Posted by Thomas Weidner (thomas) on 2010-04-03T10:26:09.000+0000
For reproduction we need more informations:
Posted by Thomas Weidner (thomas) on 2010-04-03T12:25:19.000+0000
Found and fixed with r21754