[perl-BZ-Client] Commit patch to master

Emmanuel Seyman eseyman at fedoraproject.org
Mon Apr 1 12:14:06 UTC 2013


commit a677ae95fcf54a593c99abec1598b68cf4325f0f
Author: Emmanuel Seyman <emmanuel at seyman.fr>
Date:   Mon Apr 1 14:13:53 2013 +0200

    Commit patch to master

 perl-BZ-Client-bugzilla-dates.patch |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)
---
diff --git a/perl-BZ-Client-bugzilla-dates.patch b/perl-BZ-Client-bugzilla-dates.patch
new file mode 100644
index 0000000..f8c6fe1
--- /dev/null
+++ b/perl-BZ-Client-bugzilla-dates.patch
@@ -0,0 +1,15 @@
+--- lib/BZ/Client/XMLRPC/Value.pm
++++ lib/BZ/Client/XMLRPC/Value.pm
+@@ -71,7 +71,11 @@ sub end($$) {
+             $self->{'level1_content'} = undef;
+             $self->{'level1_elem'} = undef;
+             if ("dateTime.iso8601" eq $name) {
+-               $self->{'result'} = DateTime::Format::ISO8601->parse_datetime( $self->{'result'} );
++               my $val = $self->{'result'};
++               if ($val =~ /(\d\d\d\d)(\d\d)(\d\d)(T\d\d:\d\d:\d\d)/) {
++		  $val = "$1-$2-$3$4";
++               }
++               $self->{'result'} = DateTime::Format::ISO8601->parse_datetime( $val );
+             }            
+         }
+     }


More information about the scm-commits mailing list