From ae4fe630058780d03ec2db98d9649db075ee7f04 Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Wed, 26 Sep 2001 09:37:29 +0000 Subject: Fix for bug 101659: emailsuffix was missing from the component owner mailto tag on sites that use emailsuffix. Patch by Steve Naldrett r= justdave@syndicomm.com x2 --- describecomponents.cgi | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'describecomponents.cgi') diff --git a/describecomponents.cgi b/describecomponents.cgi index 95f5ba316..2b0d3596a 100755 --- a/describecomponents.cgi +++ b/describecomponents.cgi @@ -104,6 +104,7 @@ print " Default owner "; +my $emailsuffix = Param("emailsuffix"); my $useqacontact = Param("useqacontact"); my $cols = 2; @@ -131,11 +132,11 @@ foreach (@data) { print qq|
$component -$initialowner +$initialowner |; if ($useqacontact) { print qq| -$initialqacontact +$initialqacontact |; } print "$description\n"; -- cgit v1.2.3-24-g4f1b