From 4b2c9f0f96242fcd5395c088de4e27bffbfb8085 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Tue, 10 Nov 2009 21:19:46 +0000 Subject: Bug 527505: Make 001compile.t use Bugzilla->feature to determine which modules to compile Patch by Max Kanat-Alexander r=LpSolit, a=mkanat --- xmlrpc.cgi | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'xmlrpc.cgi') diff --git a/xmlrpc.cgi b/xmlrpc.cgi index 994e3a485..8b1e69f28 100755 --- a/xmlrpc.cgi +++ b/xmlrpc.cgi @@ -22,12 +22,12 @@ use Bugzilla; use Bugzilla::Constants; use Bugzilla::Error; use Bugzilla::WebService::Constants; -if (!Bugzilla->feature('xmlrpc')) { - ThrowCodeError('feature_disabled', { feature => 'xmlrpc' }); +BEGIN { + if (!Bugzilla->feature('xmlrpc')) { + ThrowCodeError('feature_disabled', { feature => 'xmlrpc' }); + } } -# Use an eval here so that runtests.pl accepts this script even if SOAP-Lite -# is not installed. -eval { require Bugzilla::WebService::Server::XMLRPC; }; +use Bugzilla::WebService::Server::XMLRPC; Bugzilla->usage_mode(USAGE_MODE_XMLRPC); -- cgit v1.2.3-24-g4f1b