]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1113147: Revert the hack from bug 1108809 and blacklist SOAP::Lite 1.12
authorFrédéric Buclin <LpSolit@gmail.com>
Wed, 7 Jan 2015 13:33:16 +0000 (14:33 +0100)
committerFrédéric Buclin <LpSolit@gmail.com>
Wed, 7 Jan 2015 13:33:16 +0000 (14:33 +0100)
r=dkl a=glob

Bugzilla/Install/Requirements.pm
Bugzilla/WebService/Server/XMLRPC.pm

index ee50a526ab0f0cf190a2026a23055d8a328b589e..d722cc6d7ce6b83450d298bea438151e3c76bc9a 100644 (file)
@@ -281,6 +281,8 @@ sub OPTIONAL_MODULES {
         # Fixes various bugs, including 542931 and 552353 + stops
         # throwing warnings with Perl 5.12.
         version => '0.712',
+        # SOAP::Transport::HTTP 1.12 is bogus.
+        blacklist => ['^1\.12$'],
         feature => ['xmlrpc'],
     },
     # Since SOAP::Lite 1.0, XMLRPC::Lite is no longer included
index de9a5a97bdcd857c672503cb17acbb063f1da088..56b31ffefe612552541a6d891f801c5c845375ca 100644 (file)
@@ -47,13 +47,6 @@ 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(@_);