summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2016-01-14 22:20:18 +0100
committerDavid Lawrence <dkl@mozilla.com>2016-01-14 22:20:18 +0100
commit35429919e6438ee05a5bc9413952cc30fed9e6b6 (patch)
treed6f03599c989b3f0d095669fbb01544434ec0d31 /Bugzilla/Install
parent2db58cfea492eeba77be6c9ef099c16f0b175388 (diff)
downloadbugzilla-35429919e6438ee05a5bc9413952cc30fed9e6b6.tar.gz
bugzilla-35429919e6438ee05a5bc9413952cc30fed9e6b6.tar.xz
Bug 1239582 - The new REST API fails to work properly under mod_perl due to improper file path passed to bsd_glob()
r=dylan
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r--Bugzilla/Install/Requirements.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm
index a48778c1b..ccd3a649a 100644
--- a/Bugzilla/Install/Requirements.pm
+++ b/Bugzilla/Install/Requirements.pm
@@ -492,8 +492,8 @@ use constant FEATURE_FILES => (
jsonrpc => ['Bugzilla/WebService/Server/JSONRPC.pm', 'jsonrpc.cgi'],
xmlrpc => ['Bugzilla/WebService/Server/XMLRPC.pm', 'xmlrpc.cgi',
'Bugzilla/WebService.pm', 'Bugzilla/WebService/*.pm'],
- rest => ['Bugzilla/WebService/Server/REST.pm', 'rest.cgi',
- 'Bugzilla/WebService/Server/REST/Resources/*.pm'],
+ rest => ['Bugzilla/API/Server.pm', 'rest.cgi',
+ 'Bugzilla/API/*/Server.pm', 'Bugzilla/API/*/Resource/*.pm'],
psgi => ['app.psgi'],
moving => ['importxml.pl'],
auth_ldap => ['Bugzilla/Auth/Verify/LDAP.pm'],