From: justdave%syndicomm.com <> Date: Wed, 26 Sep 2001 09:37:29 +0000 (+0000) Subject: Fix for bug 101659: emailsuffix was missing from the component owner mailto tag on... X-Git-Tag: bugzilla-2.14.1~123 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae4fe630058780d03ec2db98d9649db075ee7f04;p=thirdparty%2Fbugzilla.git 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 --- diff --git a/describecomponents.cgi b/describecomponents.cgi index 95f5ba3167..2b0d3596ac 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";