diff options
-rw-r--r-- | contrib/merge-users.pl | 11 |
1 files changed, 0 insertions, 11 deletions
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; |