From e00a2bc886f86638a600030ebf98877db7a059fd Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Tue, 20 Mar 2007 02:39:14 +0000 Subject: Bug 374330: Make it possible for installation templates to be text or HTML Patch By Max Kanat-Alexander (module owner) a=mkanat --- checksetup.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'checksetup.pl') 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( -- cgit v1.2.3-24-g4f1b