]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 375287: Remove the version check in contrib/merge-users.pl - Patch by bugzilla...
authorlpsolit%gmail.com <>
Wed, 28 Mar 2007 17:58:49 +0000 (17:58 +0000)
committerlpsolit%gmail.com <>
Wed, 28 Mar 2007 17:58:49 +0000 (17:58 +0000)
contrib/merge-users.pl

index 2458755e6f3e9c3b1175162bcf5c65fcf7e5dbf4..c5d48737a6385f0473d13edb5ea4284d9bc41920 100644 (file)
@@ -61,17 +61,6 @@ my $result = GetOptions("help|?" => \$help);
 pod2usage(0) if $help;
 
 
-# We require Bugzilla 2.20 or higher (including 2.22+).
-my $current_version = BUGZILLA_VERSION;
-if ($current_version =~ /^2\.2[0123]/) {
-    print "OK, you are using Bugzilla $current_version\n"
-}
-else {
-    die "You are using Bugzilla $current_version but Bugzilla " .
-        "2.20 - 2.23 is required.\n";
-}
-
-
 # Make sure accounts were specified on the command line and exist.
 my $old = $ARGV[0] || die "You must specify an old user account.\n";
 my $old_id;