mirror of
https://github.com/moodle/moodle.git
synced 2025-07-13 18:36:34 +02:00
17 lines
291 B
PHP
17 lines
291 B
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/AttrDef.php';
|
|
|
|
/**
|
|
* Validates arbitrary text according to the HTML spec.
|
|
*/
|
|
class HTMLPurifier_AttrDef_Text extends HTMLPurifier_AttrDef
|
|
{
|
|
|
|
function validate($string, $config, &$context) {
|
|
return $this->parseCDATA($string);
|
|
}
|
|
|
|
}
|
|
|