From: lpsolit%gmail.com <> Date: Wed, 28 Mar 2007 17:58:49 +0000 (+0000) Subject: Bug 375287: Remove the version check in contrib/merge-users.pl - Patch by bugzilla... X-Git-Tag: bugzilla-3.0~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=10473f03eee9e40b49f3bf17afea4ee176b850ec;p=thirdparty%2Fbugzilla.git Bug 375287: Remove the version check in contrib/merge-users.pl - Patch by bugzilla@corris.org r/a=LpSolit --- diff --git a/contrib/merge-users.pl b/contrib/merge-users.pl index 2458755e6f..c5d48737a6 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;