diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2015-01-07 14:34:45 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2015-01-07 14:34:45 +0100 |
commit | eb9af16f33653a16d11a44fdd84b3c4386633be2 (patch) | |
tree | f177827e544f0395c7d2bcb9713a5427aef11d08 | |
parent | Bug 1113630: Set window.opener to null for the URL field to prevent interacti... (diff) | |
download | bugzilla-eb9af16f33653a16d11a44fdd84b3c4386633be2.tar.gz bugzilla-eb9af16f33653a16d11a44fdd84b3c4386633be2.tar.bz2 bugzilla-eb9af16f33653a16d11a44fdd84b3c4386633be2.zip |
Bug 1113147: Revert the hack from bug 1108809 and blacklist SOAP::Lite 1.12
r=dkl a=glob
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 2 | ||||
-rw-r--r-- | Bugzilla/WebService/Server/XMLRPC.pm | 7 |
2 files changed, 2 insertions, 7 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 7f8b19735..b0884cc37 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -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 diff --git a/Bugzilla/WebService/Server/XMLRPC.pm b/Bugzilla/WebService/Server/XMLRPC.pm index de9a5a97b..56b31ffef 100644 --- a/Bugzilla/WebService/Server/XMLRPC.pm +++ b/Bugzilla/WebService/Server/XMLRPC.pm @@ -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(@_); |