diff options
| author | Mark Wells <mark@freeside.biz> | 2013-05-29 13:15:22 -0700 |
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2013-05-29 13:15:22 -0700 |
| commit | ea32f987f9c72ad6990bfa326af2935f79bf580c (patch) | |
| tree | 727de18b686cbe93c571b85d3e5b6ea7132819c5 /rt/share/html/Elements/RT__Ticket/ColumnMap | |
| parent | ac272d7302249e13fbf07084087ae642059d63a0 (diff) | |
display date custom fields as real dates, #23121
Diffstat (limited to 'rt/share/html/Elements/RT__Ticket/ColumnMap')
| -rw-r--r-- | rt/share/html/Elements/RT__Ticket/ColumnMap | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/rt/share/html/Elements/RT__Ticket/ColumnMap b/rt/share/html/Elements/RT__Ticket/ColumnMap index 787862d6a..239e58183 100644 --- a/rt/share/html/Elements/RT__Ticket/ColumnMap +++ b/rt/share/html/Elements/RT__Ticket/ColumnMap @@ -220,32 +220,27 @@ $COLUMN_MAP = { Starts => { title => 'Starts', # loc attribute => 'Starts', - date => sub { return $_[0]->StartsObj }, - value => sub { return $_[0]->StartsObj->AsString } + value => sub { return $_[0]->StartsObj } }, Started => { title => 'Started', # loc attribute => 'Started', - date => sub { return $_[0]->StartedObj }, - value => sub { return $_[0]->StartedObj->AsString } + value => sub { return $_[0]->StartedObj }, }, Told => { title => 'Told', # loc attribute => 'Told', - date => sub { return $_[0]->ToldObj }, - value => sub { return $_[0]->ToldObj->AsString } + value => sub { return $_[0]->ToldObj }, }, Due => { title => 'Due', # loc attribute => 'Due', - date => sub { return $_[0]->DueObj }, - value => sub { return $_[0]->DueObj->AsString } + value => sub { return $_[0]->DueObj }, }, Resolved => { title => 'Resolved', # loc attribute => 'Resolved', - date => sub { return $_[0]->ResolvedObj }, - value => sub { return $_[0]->ResolvedObj->AsString } + value => sub { return $_[0]->ResolvedObj } }, UpdateStatus => { title => 'New messages', # loc |
