From 1365815665b01b62e5085130eb3a690abf2aff24 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Thu, 18 Dec 2014 15:43:31 +0000 Subject: Bug 1108809: SOAP::Lite 1.12 causes error when using XMLRPC API r=glob,a=glob --- Bugzilla/WebService/Server/XMLRPC.pm | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Bugzilla/WebService') diff --git a/Bugzilla/WebService/Server/XMLRPC.pm b/Bugzilla/WebService/Server/XMLRPC.pm index 56b31ffef..de9a5a97b 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(@_); -- cgit v1.2.3-24-g4f1b