From 3d317ca092cec05ad9dcdd3815d74bedbd9f3412 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Mon, 3 Jul 2006 15:53:24 +0000 Subject: Bug 328186: checksetup.pl should display the version of Bugzilla - Patch by RĂ©mi Zara r=mkanat a=justdave MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- importxml.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'importxml.pl') 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); } -- cgit v1.2.3-24-g4f1b