1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-02-08 15:38:20 +01:00

16 lines
284 B
PHP
Raw Normal View History

2014-09-23 23:25:04 +00:00
<?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