summaryrefslogtreecommitdiffstats
path: root/importxml.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 /importxml.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 'importxml.pl')
-rwxr-xr-ximportxml.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/importxml.pl b/importxml.pl
index 995238be1..059adb437 100755
--- a/importxml.pl
+++ b/importxml.pl
@@ -305,11 +305,11 @@ sub init() {
my $urlbase = $root->{'att'}->{'urlbase'};
my $xmlversion = $root->{'att'}->{'version'};
- if ($xmlversion ne $Bugzilla::Config::VERSION) {
+ if ($xmlversion ne BUGZILLA_VERSION) {
my $log = "Possible version conflict!\n";
$log .= " XML was exported from Bugzilla version $xmlversion\n";
$log .= " But this installation uses ";
- $log .= $Bugzilla::Config::VERSION . "\n";
+ $log .= BUGZILLA_VERSION . "\n";
Debug($log, OK_LEVEL);
push(@logs, $log);
}