summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2007-03-20 03:39:14 +0100
committermkanat%bugzilla.org <>2007-03-20 03:39:14 +0100
commite00a2bc886f86638a600030ebf98877db7a059fd (patch)
tree029bf1f1b4bf5170dfbb260c856aacfc36b6bd35 /checksetup.pl
parentba5a5c404b8ef0b71efd873e604184ab90ebff94 (diff)
downloadbugzilla-e00a2bc886f86638a600030ebf98877db7a059fd.tar.gz
bugzilla-e00a2bc886f86638a600030ebf98877db7a059fd.tar.xz
Bug 374330: Make it possible for installation templates to be text or HTML
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=mkanat
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/checksetup.pl b/checksetup.pl
index aff7bb796..81eab9b87 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -54,7 +54,7 @@ BEGIN { chdir dirname($0); }
use lib ".";
use Bugzilla::Constants;
use Bugzilla::Install::Requirements;
-use Bugzilla::Install::Util qw(display_version_and_os);
+use Bugzilla::Install::Util qw(install_string get_version_and_os);
require 5.008001 if ON_WINDOWS; # for CGI 2.93 or higher
@@ -78,7 +78,7 @@ pod2usage({-verbose => 1, -exitval => 1}) if $switch{'help'};
my $answers_file = $ARGV[0];
my $silent = $answers_file && !$switch{'verbose'};
-display_version_and_os() unless $silent;
+print(install_string('header', get_version_and_os()) . "\n") unless $silent;
# Check required --MODULES--
my $module_results = check_requirements(!$silent);
Bugzilla::Install::Requirements::print_module_instructions(