Add forgotten rmspecials to funcNorm in PHP parser

This commit is contained in:
Andrew Garrett 2008-09-22 14:03:45 +00:00
parent 74d4fa198f
commit d0972206f3

View file

@ -923,6 +923,7 @@ class AbuseFilterParser {
$s = $this->ccnorm($s);
$s = $this->rmdoubles( $s );
$s = $this->rmspecials( $s );
return new AFPData( AFPData::DString, $s );
}