summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2016-09-23 23:41:49 +0200
committerDylan William Hardison <dylan@hardison.net>2016-09-23 23:41:49 +0200
commit1eece219f8739b3dbd9f334c2f11bb4975be8924 (patch)
treeedc4132aecf14151705ce67634d5b054256ba68f /Bugzilla
parent38e3b75a40ceda26e470198b3dfd44b3dbc03509 (diff)
downloadbugzilla-1eece219f8739b3dbd9f334c2f11bb4975be8924.tar.gz
bugzilla-1eece219f8739b3dbd9f334c2f11bb4975be8924.tar.xz
Bug 1304179 - Remove REQUIRED_MODULES references from release notes (and Template.pm)
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Template.pm13
1 files changed, 0 insertions, 13 deletions
diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm
index ab2461f1b..eb1496fca 100644
--- a/Bugzilla/Template.pm
+++ b/Bugzilla/Template.pm
@@ -1094,19 +1094,6 @@ sub create {
# These don't work as normal constants.
DB_MODULE => \&Bugzilla::Constants::DB_MODULE,
- REQUIRED_MODULES =>
- \&Bugzilla::Install::Requirements::REQUIRED_MODULES,
- OPTIONAL_MODULES => sub {
- my @optional = @{OPTIONAL_MODULES()};
- foreach my $item (@optional) {
- my @features;
- foreach my $feat_id (@{ $item->{feature} }) {
- push(@features, install_string("feature_$feat_id"));
- }
- $item->{feature} = \@features;
- }
- return \@optional;
- },
'default_authorizer' => sub { return Bugzilla::Auth->new() },
# It is almost always better to do mobile feature detection, client side in js.