-title => $c{TrackerName} . ": " . $title,
-style => { 'src' => $c{StyleSheet} }
);
- format_html( $msg );
+ format_html( $msg, SuppressControlReply => 0 );
print end_html;
}
elsif ( $mode eq "part" ) {
my $bug = $attrs{Bug} || undef;
+ $attrs{SuppressControlReply} = 1 unless defined $attrs{SuppressControlReply};
+
print comment( "Message "
. $m->{id} . ": "
. $m->{msgid}
my @archives = archive_list( $m->{msgid} );
- if ( $m->{msgtype} eq "control-reply" ) {
- print p ( "Control reply; (" . msglink( $m, "Full Text" ) . ")" )
+ if ( $m->{msgtype} eq "control-reply" && $attrs{SuppressControlReply} ) {
+ print p ( { -class => "controlreplylink" },
+ "Control reply; (" . msglink( $m, "Full Text" ) . ")" )
. "\n";
- print hr . "\n";
return;
}