]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 630800: Require a newer version of URI.pm to correctly parse URLs that
authorMax Kanat-Alexander <mkanat@bugzilla.org>
Sat, 12 Feb 2011 01:06:37 +0000 (17:06 -0800)
committerMax Kanat-Alexander <mkanat@bugzilla.org>
Sat, 12 Feb 2011 01:06:37 +0000 (17:06 -0800)
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

Bugzilla/Install/Requirements.pm

index e3049f2d5d9d97f252ced59bb5af9263dccaed1d..047ed36f1113c35c0d9cf65e017c3a0564a309a9 100644 (file)
@@ -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',