Files
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

16 lines
299 B
PHP

<?php
/**
* Validates arbitrary text according to the HTML spec.
*/
class HTMLPurifier_AttrDef_Text extends HTMLPurifier_AttrDef
{
public function validate($string, $config, $context) {
return $this->parseCDATA($string);
}
}
// vim: et sw=4 sts=4