mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-14 02:31:59 +00:00
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
This commit is contained in:
parent
81ff38a145
commit
2084da19a0
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user