diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2011-02-12 02:06:37 +0100 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2011-02-12 02:06:37 +0100 |
commit | ede6518f4e49b26c9096173fcb9ba4197f774874 (patch) | |
tree | 50f0dc8856222d59f8a72a66b4c09a95d07819d5 /Bugzilla/Install | |
parent | f4c15fd204e9f0e00c3a5899d318f05105074e5f (diff) | |
download | bugzilla-ede6518f4e49b26c9096173fcb9ba4197f774874.tar.gz bugzilla-ede6518f4e49b26c9096173fcb9ba4197f774874.tar.xz |
Bug 630800: Require a newer version of URI.pm to correctly parse URLs that
have ';' as their query-string delimiter, which show up when upgrading
from the old tag system to the new tag system.
r=LpSolit, a=LpSolit
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index e3049f2d5..047ed36f1 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -150,7 +150,9 @@ sub REQUIRED_MODULES { { package => 'URI', module => 'URI', - version => 0 + # This version properly handles a semicolon as the delimiter + # in a URL query string. + version => '1.37', }, { package => 'List-MoreUtils', |