From: David Lawrence Date: Thu, 18 Dec 2014 15:43:31 +0000 (+0000) Subject: Bug 1108809: SOAP::Lite 1.12 causes error when using XMLRPC API X-Git-Tag: release-5.1.1~412 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1365815665b01b62e5085130eb3a690abf2aff24;p=thirdparty%2Fbugzilla.git Bug 1108809: SOAP::Lite 1.12 causes error when using XMLRPC API r=glob,a=glob --- diff --git a/Bugzilla/WebService/Server/XMLRPC.pm b/Bugzilla/WebService/Server/XMLRPC.pm index 56b31ffefe..de9a5a97bd 100644 --- a/Bugzilla/WebService/Server/XMLRPC.pm +++ b/Bugzilla/WebService/Server/XMLRPC.pm @@ -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(@_);