Commit 0e4b2ce5 authored by ghendricks%novell.com's avatar ghendricks%novell.com

Bug 486006 - importxml.pl must not use format_time() for deadlines

patch by ghendricks r=LpSolit a=LpSolit
parent 114db9a8
......@@ -445,8 +445,10 @@ sub format_time {
hour => $time[2],
minute => $time[1],
second => $time[0],
# Use the timezone specified by the server.
time_zone => Bugzilla->local_timezone});
# If importing, use the specified timezone, otherwise
# use the timezone specified by the server.
time_zone => Bugzilla->local_timezone->offset_as_string($time[6])
|| Bugzilla->local_timezone});
# Now display the date using the given timezone,
# or the user's timezone if none is given.
......
......@@ -87,7 +87,6 @@ use Bugzilla::Status;
use MIME::Base64;
use MIME::Parser;
use Date::Format;
use Getopt::Long;
use Pod::Usage;
use XML::Twig;
......@@ -803,8 +802,7 @@ sub process_bug {
# Process time fields
if ( $params->{"timetrackinggroup"} ) {
my $date = format_time( $bug_fields{'deadline'}, "%Y-%m-%d" )
|| undef;
my $date = validate_date( $bug_fields{'deadline'} ) ? $bug_fields{'deadline'} : undef;
push( @values, $date );
push( @query, "deadline" );
if ( defined $bug_fields{'estimated_time'} ) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment