aboutsummaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2014-12-18 15:43:31 +0000
committerDavid Lawrence <dkl@mozilla.com>2014-12-18 15:44:38 +0000
commit9e89b78113b91a3c90d1f61d45cafd55a14f257a (patch)
tree367b12afa3e52b19de9a16a43c630f5982aba57c /Bugzilla
parentc76e2cc13528d5e17214d20fc2475c1e5835e0ec (diff)
downloadbugs-9e89b78113b91a3c90d1f61d45cafd55a14f257a.tar
bugs-9e89b78113b91a3c90d1f61d45cafd55a14f257a.tar.gz
bugs-9e89b78113b91a3c90d1f61d45cafd55a14f257a.tar.bz2
bugs-9e89b78113b91a3c90d1f61d45cafd55a14f257a.tar.xz
bugs-9e89b78113b91a3c90d1f61d45cafd55a14f257a.zip
Bug 1108809: SOAP::Lite 1.12 causes error when using XMLRPC API
r=glob,a=glob
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/WebService/Server/XMLRPC.pm7
1 files changed, 7 insertions, 0 deletions
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(@_);