]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix for bug 101659: emailsuffix was missing from the component owner mailto tag on...
authorjustdave%syndicomm.com <>
Wed, 26 Sep 2001 09:37:29 +0000 (09:37 +0000)
committerjustdave%syndicomm.com <>
Wed, 26 Sep 2001 09:37:29 +0000 (09:37 +0000)
Patch by Steve Naldrett <snaldrett@transparentnetworks.com>
r= justdave@syndicomm.com x2

describecomponents.cgi

index 95f5ba3167a6cb64df7561e378a2402341e35710..2b0d3596ac487382a3eb1e4e13cff34d102329d4 100755 (executable)
@@ -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";