diff options
author | lpsolit%gmail.com <> | 2009-11-26 03:02:07 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2009-11-26 03:02:07 +0100 |
commit | 65f8c60da54e296b57cdc665b6f503df128636c7 (patch) | |
tree | 9d979eaf27bff28c1d702688ebf6686ff9f76372 /Bugzilla | |
parent | d2800f79b4a99751fab0dfd9db509e11b4106432 (diff) | |
download | bugzilla-65f8c60da54e296b57cdc665b6f503df128636c7.tar.gz bugzilla-65f8c60da54e296b57cdc665b6f503df128636c7.tar.xz |
Bug 208347: The version of Chart::Base below 2.1 cannot be determined accurately - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 190dbe968..dfdeafb70 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -155,7 +155,8 @@ sub OPTIONAL_MODULES { { package => 'Chart', module => 'Chart::Lines', - version => '1.0', + # Versions below 2.1 cannot be detected accurately. + version => '2.1', feature => [qw(new_charts old_charts)], }, { |