Commit 9e89b781 authored by David Lawrence's avatar David Lawrence

Bug 1108809: SOAP::Lite 1.12 causes error when using XMLRPC API

r=glob,a=glob
parent c76e2cc1
......@@ -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(@_);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment