Commit 20e0cc4d authored by Teemu Mannermaa's avatar Teemu Mannermaa

Bug 600810: Use XMLRPC::Transport::HTTP:Apache as base class under mod_perl

r/a=mkanat
parent 6fbbf502
...@@ -23,7 +23,11 @@ package Bugzilla::WebService::Server::XMLRPC; ...@@ -23,7 +23,11 @@ package Bugzilla::WebService::Server::XMLRPC;
use strict; use strict;
use XMLRPC::Transport::HTTP; use XMLRPC::Transport::HTTP;
use Bugzilla::WebService::Server; use Bugzilla::WebService::Server;
our @ISA = qw(XMLRPC::Transport::HTTP::CGI Bugzilla::WebService::Server); if ($ENV{MOD_PERL}) {
our @ISA = qw(XMLRPC::Transport::HTTP::Apache Bugzilla::WebService::Server);
} else {
our @ISA = qw(XMLRPC::Transport::HTTP::CGI Bugzilla::WebService::Server);
}
use Bugzilla::WebService::Constants; use Bugzilla::WebService::Constants;
......
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