diff options
author | mkanat%bugzilla.org <> | 2009-10-24 05:21:06 +0000 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-10-24 05:21:06 +0000 |
commit | a2dd3b00284fd4724d3408274cb1156c7a77d187 (patch) | |
tree | 4aa41a1c8cea9d31aaccddc4685f8f1c5991c1b4 /Bugzilla/Install/Requirements.pm | |
parent | Bug 365267: attachment.cgi should not be editable when the user is not logged... (diff) | |
download | bugzilla-a2dd3b00284fd4724d3408274cb1156c7a77d187.tar.gz bugzilla-a2dd3b00284fd4724d3408274cb1156c7a77d187.tar.bz2 bugzilla-a2dd3b00284fd4724d3408274cb1156c7a77d187.zip |
Bug 520948: Use Bugzilla->feature and feature_enabled everywhere instead of checking if modules are installed
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'Bugzilla/Install/Requirements.pm')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 70974a373..86b4813d1 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -151,7 +151,7 @@ sub OPTIONAL_MODULES { }, { package => 'Chart', - module => 'Chart::Base', + module => 'Chart::Lines', version => '1.0', feature => [qw(new_charts old_charts)], }, @@ -179,7 +179,7 @@ sub OPTIONAL_MODULES { package => 'XML-Twig', module => 'XML::Twig', version => 0, - feature => ['moving'], + feature => ['moving', 'updates'], }, { package => 'MIME-tools', |