summaryrefslogtreecommitdiffstats
path: root/contrib/merge-users.pl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-07-03 17:53:24 +0200
committerlpsolit%gmail.com <>2006-07-03 17:53:24 +0200
commit3d317ca092cec05ad9dcdd3815d74bedbd9f3412 (patch)
tree20e379143241aee23d4dc506623f302e68698613 /contrib/merge-users.pl
parent1e087ef9416da23989f9134866586ea02df156da (diff)
downloadbugzilla-3d317ca092cec05ad9dcdd3815d74bedbd9f3412.tar.gz
bugzilla-3d317ca092cec05ad9dcdd3815d74bedbd9f3412.tar.xz
Bug 328186: checksetup.pl should display the version of Bugzilla - Patch by RĂ©mi Zara <remi_zara@mac.com> r=mkanat a=justdave
Diffstat (limited to 'contrib/merge-users.pl')
-rw-r--r--contrib/merge-users.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/merge-users.pl b/contrib/merge-users.pl
index c8537c661..540b22fb9 100644
--- a/contrib/merge-users.pl
+++ b/contrib/merge-users.pl
@@ -47,6 +47,7 @@ merge-users.pl - Merge two user accounts.
use lib qw(.);
use Bugzilla;
+use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Util;
@@ -62,7 +63,7 @@ pod2usage(0) if $help;
# We require Bugzilla 2.20 or higher (including 2.22+).
-my $current_version = $Bugzilla::Config::VERSION;
+my $current_version = BUGZILLA_VERSION;
if ($current_version =~ /^2\.2[0123]/) {
print "OK, you are using Bugzilla $current_version\n"
}