--- openwebmail-read.pl.orig Fri Jul 16 19:59:38 2004 +++ openwebmail-read.pl Fri Jul 16 19:59:23 2004 @@ -816,7 +816,7 @@ my $temphtml .= qq|
| |. - qq|$lang_text{'attachment'} $attnumber: ${$r_attachment}{filename} ($attlen) $nodeid $disposition|. + qq|$lang_text{'attachment'} $attnumber: |.str2html(${$r_attachment}{filename}).qq| ($attlen) $nodeid $disposition|. qq| | |.
qq||.
qq|| |.
- qq|$lang_text{'attachment'} $attnumber: ${$r_attachment}{filename} ($attlen) $nodeid $disposition|.
+ qq|$lang_text{'attachment'} $attnumber: |.str2html(${$r_attachment}{filename}).qq| ($attlen) $nodeid $disposition|.
qq| | |.
- qq|$lang_text{'type'}: $contenttype | |. - qq|$lang_text{'encoding'}: ${$r_attachment}{encoding}|; + qq|$lang_text{'type'}: |.str2html($contenttype).qq| |. + qq|$lang_text{'encoding'}: |.str2html(${$r_attachment}{encoding}); if (${$r_attachment}{description} ne "") { - $temphtml .= qq| $lang_text{'description'}: ${$r_attachment}{description}|; + $temphtml .= qq| $lang_text{'description'}: |.str2html(${$r_attachment}{description}); } my $blank=""; if ($contenttype=~/^text/ || |