mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 00:43:20 +01:00
Show both date and time for before today time.
- Fix mails in the list not showing date and time under date column.
This commit is contained in:
parent
4ae871020d
commit
570558ff31
@ -815,10 +815,11 @@ var et2_date_ro = et2_valueWidget.extend([et2_IDetachedDOM],
|
|||||||
{
|
{
|
||||||
display = date(this.egw().preference('timeformat') == '24' ? 'H:i' : 'g:i a', this.date);
|
display = date(this.egw().preference('timeformat') == '24' ? 'H:i' : 'g:i a', this.date);
|
||||||
}
|
}
|
||||||
// Before today - just the date
|
// Before today - date and time
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
display = date(this.egw().preference('dateformat'), this.date);
|
display = date(this.egw().preference('dateformat') + " " +
|
||||||
|
(this.egw().preference('timeformat') == '24' ? 'H:i' : 'g:i a'), this.date);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case "date":
|
case "date":
|
||||||
|
Loading…
Reference in New Issue
Block a user