HexToASCII: encode chars in html

master
Russell Holt 2014-12-12 00:14:19 -05:00
parent 2a9140888b
commit 019264656c
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ sub printable_chr {
$representation->{pure} = ''; # Don't want to add any printable whitespace and wonder what happened.
} else {
# This must be a printable character, so just let chr figure it out
$representation->{html} = $representation->{pure} = chr $hex;
$representation->{html} = html_enc($representation->{pure} = chr $hex);
}
return $representation;