mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:36 +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
6529bed2a6
commit
9b05ccc4ad
@ -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);
|
||||
}
|
||||
// Before today - just the date
|
||||
// Before today - date and time
|
||||
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;
|
||||
case "date":
|
||||
|
Loading…
Reference in New Issue
Block a user