From: Ivan Kohler Date: Tue, 4 Jun 2013 19:26:14 +0000 (-0700) Subject: reconcile date formatting from #23121 with RT 4.0.13 (RT#13852) X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=be03a0f16d1476522950d93869d17d067375804e reconcile date formatting from #23121 with RT 4.0.13 (RT#13852) --- diff --git a/rt/share/html/Elements/ColumnMap b/rt/share/html/Elements/ColumnMap index 7b127e90e..12a61453c 100644 --- a/rt/share/html/Elements/ColumnMap +++ b/rt/share/html/Elements/ColumnMap @@ -117,13 +117,14 @@ my $COLUMN_MAP = { my @values; # it is guaranteed to be the same type for all fields, right? my $v = $values->First; + my $cftype = $v->CustomFieldObj->Type; do { - if ($v->Type eq 'Image') { + if ($cftype eq 'Image') { push @values, \($m->scomp( '/Elements/ShowCustomFieldImage', Object => $v )); - } elsif ( $v->Type eq 'Date' or $v->Type eq 'DateTime' ) { + } elsif ( $cftype eq 'Date' or $cftype eq 'DateTime' ) { # then actually return the date object; # ProcessColumnMapValue will stringify it my $DateObj = RT::Date->new( $session{'CurrentUser'} );