summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install.pm
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2006-09-14 12:12:22 +0200
committermkanat%bugzilla.org <>2006-09-14 12:12:22 +0200
commit47ee48a70f9abe53bc5e934f6e83c997b350dc6b (patch)
tree0b0e055d03e90ab5f448600c7681653a97068307 /Bugzilla/Install.pm
parent8af30bf52079932a49dd628ca6045c313846f34a (diff)
downloadbugzilla-47ee48a70f9abe53bc5e934f6e83c997b350dc6b.tar.gz
bugzilla-47ee48a70f9abe53bc5e934f6e83c997b350dc6b.tar.xz
Bug 277502: Re-organize checksetup.pl to be understood more easily (make it a short series of subroutines)
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=justdave
Diffstat (limited to 'Bugzilla/Install.pm')
-rw-r--r--Bugzilla/Install.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Install.pm b/Bugzilla/Install.pm
index 1a910f8e0..c50abea95 100644
--- a/Bugzilla/Install.pm
+++ b/Bugzilla/Install.pm
@@ -375,7 +375,8 @@ sub get_text {
my $message;
$template->process('global/message.txt.tmpl', $vars, \$message)
|| ThrowTemplateError($template->error());
- $message =~ s/^\s+//gm;
+ # Remove the indenting that exists in messages.html.tmpl.
+ $message =~ s/^ //gm;
return $message;
}