summaryrefslogtreecommitdiffstats
path: root/describecomponents.cgi
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2001-09-26 11:37:29 +0200
committerjustdave%syndicomm.com <>2001-09-26 11:37:29 +0200
commitae4fe630058780d03ec2db98d9649db075ee7f04 (patch)
tree17ac977519cf13cbeaa251e0e53c3e26fa312877 /describecomponents.cgi
parentcad844da937ca3b3ef3976ec33200e77481bdeaf (diff)
downloadbugzilla-ae4fe630058780d03ec2db98d9649db075ee7f04.tar.gz
bugzilla-ae4fe630058780d03ec2db98d9649db075ee7f04.tar.xz
Fix for bug 101659: emailsuffix was missing from the component owner mailto tag on sites that use emailsuffix.
Patch by Steve Naldrett <snaldrett@transparentnetworks.com> r= justdave@syndicomm.com x2
Diffstat (limited to 'describecomponents.cgi')
-rwxr-xr-xdescribecomponents.cgi5
1 files changed, 3 insertions, 2 deletions
diff --git a/describecomponents.cgi b/describecomponents.cgi
index 95f5ba316..2b0d3596a 100755
--- a/describecomponents.cgi
+++ b/describecomponents.cgi
@@ -104,6 +104,7 @@ print "
<th align=left>Default owner</th>
";
+my $emailsuffix = Param("emailsuffix");
my $useqacontact = Param("useqacontact");
my $cols = 2;
@@ -131,11 +132,11 @@ foreach (@data) {
print qq|
<tr><td colspan=$cols><hr></td></tr>
<tr><td rowspan=2>$component</td>
-<td><a href="mailto:$initialowner">$initialowner</a></td>
+<td><a href="mailto:$initialowner$emailsuffix">$initialowner</a></td>
|;
if ($useqacontact) {
print qq|
-<td><a href="mailto:$initialqacontact">$initialqacontact</a></td>
+<td><a href="mailto:$initialqacontact$emailsuffix">$initialqacontact</a></td>
|;
}
print "</tr><tr><td colspan=$colbut1>$description</td></tr>\n";