]> 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:34:45 +0000 (14:34 +0100)
committerFrédéric Buclin <LpSolit@gmail.com>
Wed, 7 Jan 2015 13:34:45 +0000 (14:34 +0100)
r=dkl a=glob

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

index 7f8b197353c0168984756508126227b5b9c0a205..b0884cc37df217d994ea4701673f7ae96086675d 100644 (file)
@@ -280,6 +280,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(@_);