From b119970bc06622417e09f6fbc2993c374047855b Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Wed, 28 Mar 2007 17:57:29 +0000 Subject: Bug 375287: Remove the version check in contrib/merge-users.pl - Patch by bugzilla@corris.org r/a=LpSolit --- contrib/merge-users.pl | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'contrib') diff --git a/contrib/merge-users.pl b/contrib/merge-users.pl index 2458755e6..c5d48737a 100644 --- a/contrib/merge-users.pl +++ b/contrib/merge-users.pl @@ -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; -- cgit v1.2.3-24-g4f1b