Forward port login history date display fix.

This commit is contained in:
Colin Kuskie 2008-12-16 04:25:43 +00:00
parent da10f64d29
commit d5e9af23e2
2 changed files with 2 additions and 1 deletions

View file

@ -14,6 +14,7 @@
- fixed #8838: Gallery Cross Publish template is broken
- fixed #8898: versioning problem
- fixed #9315: Password Recovery
- fixed #9298: Inconsistent date formats
7.6.6
- fixed #8792: Image Preview gives ERROR in Collateral Manager

View file

@ -59,7 +59,7 @@ sub www_viewLoginHistory {
$data{username} = $i18n->get('unknown user') if ($data{userId} eq "0");
$row[$i] = '<tr class="tableData"><td>'.$data{username}.' ('.$data{userId}.')</td>';
$row[$i] .= '<td>'.$data{status}.'</td>';
$row[$i] .= '<td>'.$session->datetime->epochToHuman($data{timeStamp},"%H:%n%p %M/%D/%y").'</td>';
$row[$i] .= '<td>'.$session->datetime->epochToHuman($data{timeStamp}).'</td>';
$row[$i] .= '<td>'.$data{ipAddress}.'</td>';
$row[$i] .= '<td>'.$data{userAgent}.'</td>';
$row[$i] .= '<td>'.$data{sessionId}.'</td>';