Follow-up to r56296, replace htmlspecialchars_decode with html_entity_decode.

This commit is contained in:
Andrew Garrett 2009-09-15 10:25:15 +00:00
parent 9dcc038e3e
commit 95f53efdfe

View file

@ -1373,7 +1373,7 @@ class AbuseFilterParser {
array( 'ccnorm', 1, count($args) ) );
$s = $args[0]->toString();
$s = htmlspecialchars_decode($s);
$s = html_entity_decode($s, ENT_QUOTES, 'UTF-8');
$s = $this->ccnorm( $s );
return new AFPData( AFPData::DString, $s );