]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1108809: SOAP::Lite 1.12 causes error when using XMLRPC API
authorDavid Lawrence <dkl@mozilla.com>
Thu, 18 Dec 2014 15:43:31 +0000 (15:43 +0000)
committerDavid Lawrence <dkl@mozilla.com>
Thu, 18 Dec 2014 15:43:31 +0000 (15:43 +0000)
r=glob,a=glob

Bugzilla/WebService/Server/XMLRPC.pm

index 56b31ffefe612552541a6d891f801c5c845375ca..de9a5a97bdcd857c672503cb17acbb063f1da088 100644 (file)
@@ -47,6 +47,13 @@ BEGIN {
     };
 }
 
+sub new {
+    my $class = shift;
+    my $self = $class->SUPER::new(@_);
+    $self->{debug_logger} = sub {};
+    return $self;
+}
+
 sub initialize {
     my $self = shift;
     my %retval = $self->SUPER::initialize(@_);