convert angle brackets in subject to lt and gt

This commit is contained in:
endico%mozilla.org 1999-03-23 08:31:12 +00:00
parent df7afeebfd
commit 18dc148963

View File

@ -116,6 +116,8 @@ for my $msg (sort { $a <=> $b } $folder->message_list) {
my $from = $1;
$news =~ /^Subject: ([^\n]+)/m;
my $subject = $1;
$subject =~ s/</&lt;/g;
$subject =~ s/>/&gt;/g;
$news =~ /^Date: ([^\n]+)/m;
my $date = $1;