Bug 486006 - importxml.pl must not use format_time() for deadlines
patch by ghendricks r=LpSolit a=LpSolit git-svn-id: svn://10.0.0.236/trunk@256888 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
e2aa2b9956
commit
e7be1a3242
@ -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'} ) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user