diff options
author | David Lawrence <dkl@mozilla.com> | 2014-12-18 16:43:31 +0100 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2014-12-18 16:43:31 +0100 |
commit | 1365815665b01b62e5085130eb3a690abf2aff24 (patch) | |
tree | 9c8a431670991a0fa41eb2642c5b4e6e9fc76991 /Bugzilla | |
parent | 0598a0af385f90fdbc6f7a59fb5edb007394b73c (diff) | |
download | bugzilla-1365815665b01b62e5085130eb3a690abf2aff24.tar.gz bugzilla-1365815665b01b62e5085130eb3a690abf2aff24.tar.xz |
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.pm | 7 |
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(@_); |