From: Max Kanat-Alexander Date: Sat, 12 Feb 2011 01:06:37 +0000 (-0800) Subject: Bug 630800: Require a newer version of URI.pm to correctly parse URLs that X-Git-Tag: bugzilla-4.1.1~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ede6518f4e49b26c9096173fcb9ba4197f774874;p=thirdparty%2Fbugzilla.git 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 --- diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index e3049f2d5d..047ed36f11 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',