Fixed bug on the export for Excel: time is given in am-pm format (there is no way to know wether it is in the morning or the afternoon)

SVN:1.2.1[1945]
This commit is contained in:
Romain Quetiez
2012-04-06 09:32:00 +00:00
parent 10b81f0569
commit f115e0b120

View File

@@ -1365,7 +1365,7 @@ EOF
{
$iDate = AttributeDateTime::GetAsUnixSeconds($oObj->Get($sAttCode));
$aRow[] = '<td>'.date('Y-m-d', $iDate).'</td>';
$aRow[] = '<td>'.date('h:i:s', $iDate).'</td>';
$aRow[] = '<td>'.date('H:i:s', $iDate).'</td>';
}
else
{