summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2007-03-28 19:57:29 +0200
committerlpsolit%gmail.com <>2007-03-28 19:57:29 +0200
commitb119970bc06622417e09f6fbc2993c374047855b (patch)
tree25c8a3b6f4cf2fc6142c78164407f5b684bda0c4 /contrib
parent3cbe5cbb7f953f37f628dd58a87c13f0df5439ac (diff)
downloadbugzilla-b119970bc06622417e09f6fbc2993c374047855b.tar.gz
bugzilla-b119970bc06622417e09f6fbc2993c374047855b.tar.xz
Bug 375287: Remove the version check in contrib/merge-users.pl - Patch by bugzilla@corris.org r/a=LpSolit
Diffstat (limited to 'contrib')
-rw-r--r--contrib/merge-users.pl11
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;