Update to 3.8.1 tsv file
authorEmmanuel Lacour <elacour@home-dn.net>
Tue, 16 Sep 2008 14:07:56 +0000 (14:07 +0000)
committerEmmanuel Lacour <elacour@home-dn.net>
Tue, 16 Sep 2008 14:07:56 +0000 (14:07 +0000)
html/Search/Results.xls

index 533de19..0627c97 100644 (file)
@@ -1,8 +1,8 @@
 %# BEGIN BPS TAGGED BLOCK {{{
 %# 
 %# COPYRIGHT:
-%#  
-%# This software is Copyright (c) 1996-2007 Best Practical Solutions, LLC 
+%# 
+%# This software is Copyright (c) 1996-2008 Best Practical Solutions, LLC
 %#                                          <jesse@bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
@@ -24,7 +24,7 @@
 %# along with this program; if not, write to the Free Software
 %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 %# 02110-1301 or visit their web page on the internet at
-%# http://www.gnu.org/copyleft/gpl.html.
+%# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
 %# 
 %# 
 %# CONTRIBUTION SUBMISSION POLICY:
@@ -88,6 +88,7 @@ while ( my $Ticket = $Tickets->Next()) {
             $row->{$attr} = "";
         } else {
             my $method = '$Ticket->'.$attr.'()';
+            $method =~ s/->ISO\(\)$/->ISO( Timezone => 'user' )/;
             $row->{$attr} = eval $method;
             if ($@) {die "Failed to find $attr - ". $@}; 
         }
@@ -95,15 +96,13 @@ while ( my $Ticket = $Tickets->Next()) {
 
     my $cfs = $Ticket->QueueObj->TicketCustomFields();
     while (my $cf = $cfs->Next) {
+        $known_cfs{$cf->Id} = $cf->Name;
         my @content;
         my $values = $Ticket->CustomFieldValues($cf->Id);
         while (my $value = $values->Next) {
             push @content, $value->Content;
         }
         $row->{'CustomField-'.$cf->Id} = join(', ',@content);
-        if ($row->{'CustomField-'.$cf->Id}) {
-            $known_cfs{$cf->Id} = $cf->Name;
-        }
     }
     push @rows, $row;
 }