Commit b119970b authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 375287: Remove the version check in contrib/merge-users.pl - Patch by…

Bug 375287: Remove the version check in contrib/merge-users.pl - Patch by bugzilla@corris.org r/a=LpSolit
parent 3cbe5cbb
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment