Details
Description
The following code causes the failure:
Zend_Date::now('uk')->getDate('uk')
This happens for a number of different locales (about 80), I used the code below to get the number:
$allLocales = Zend_Locale::getLocaleList();
$failing = array();
foreach ($allLocales as $locale => $val) {
try {
Zend_Date::now($locale)->getDate($locale);
}
catch (Exception $e)
{
$failing []= $locale;
}
}
var_dump($failing);
PHP Info from the test environment.