mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 09:23:28 +01:00
fixed reported bug #1468 (wrong time in messagelist)
This commit is contained in:
parent
894dfc127c
commit
a9412a9f14
@ -341,9 +341,9 @@
|
||||
$this->t->set_var('message_uid', $header['uid']);
|
||||
|
||||
if ($dateToday == date('Y-m-d', $header['date'])) {
|
||||
$this->t->set_var('date', date('H:i:s', $header['date']));
|
||||
$this->t->set_var('date', $GLOBALS['egw']->common->show_date($header['date'],'H:i:s'));
|
||||
} else {
|
||||
$this->t->set_var('date', date($GLOBALS['egw_info']['user']['preferences']['common']['dateformat'], $header['date']));
|
||||
$this->t->set_var('date', $GLOBALS['egw']->common->show_date($header['date'],$GLOBALS['egw_info']['user']['preferences']['common']['dateformat']));
|
||||
}
|
||||
|
||||
$this->t->set_var('size', $this->show_readable_size($header['size']));
|
||||
|
Loading…
Reference in New Issue
Block a user