Fixed stupid typo that was preventing HTML tags from being quoted properly.

This commit is contained in:
terry%mozilla.org 1999-05-14 00:09:47 +00:00
parent 30ccbc6e6e
commit 607378f860

View File

@ -75,9 +75,10 @@ for $k (@revs) {
next;
}
open( DIFF, "$rcsdiffcommand -c -r$prevrev -r$rev $fullname 2>&1|" );
$_ =~ s/&/&/g;
$_ =~ s/</&lt;/g;
while(<DIFF>){
$_ =~ s/&/&amp;/g;
$_ =~ s/</&lt;/g;
$_ =~ s/>/&gt;/g;
print "$who: $_";
}
$didone = 1;