]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1219949 - Invalid version format (non-numeric data) error when bugzilla_version...
authorDavid Lawrence <dkl@mozilla.com>
Thu, 29 Oct 2015 22:19:57 +0000 (22:19 +0000)
committerDavid Lawrence <dkl@mozilla.com>
Thu, 29 Oct 2015 22:19:57 +0000 (22:19 +0000)
Bugzilla/Constants.pm

index 2fd6a23b1822f0726659f4b4bc9214b6d68e1542..cfa2be909875cb89593f086fcd9efbda87777260 100644 (file)
@@ -226,7 +226,7 @@ use Memoize;
 # BMO: we don't map exactly to a specific bugzilla version, so override our
 # reported version with a parameter.
 sub BUGZILLA_VERSION {
-    my $bugzilla_version = '4.2+';
+    my $bugzilla_version = '4.2';
     eval { require Bugzilla } || return $bugzilla_version;
     return Bugzilla->params->{bugzilla_version} || $bugzilla_version;
 }