diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-05-25 00:55:40 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-05-25 00:55:40 +0200 |
commit | 2d57ca9161371bef0259803efb2b2fceb4f9a934 (patch) | |
tree | e6005376d2a89e37c3f51ee3ef0d90ddc0e0ad66 /Bugzilla/Install | |
parent | 7df590fa40af15df14183375f7fb18b7ff2e6969 (diff) | |
download | bugzilla-2d57ca9161371bef0259803efb2b2fceb4f9a934.tar.gz bugzilla-2d57ca9161371bef0259803efb2b2fceb4f9a934.tar.xz |
Bug 567303: Implement a working algorithm for sorting fields based on
VALIDATOR_DEPENDENCIES in Bugzilla::Object. (The previous code did not
actually sort fields correctly.)
r=timello, a=mkanat
Diffstat (limited to 'Bugzilla/Install')
-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 aff3608cf..8c99ff617 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -140,7 +140,8 @@ sub REQUIRED_MODULES { { package => 'List-MoreUtils', module => 'List::MoreUtils', - version => 0 + # Fixes a memory leak in part() + version => 0.23, }, ); |