mirror of
https://github.com/moodle/moodle.git
synced 2025-06-14 07:41:10 +02:00
16 lines
304 B
PHP
16 lines
304 B
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/HTMLModule.php';
|
|
|
|
class HTMLPurifier_HTMLModule_NonXMLCommonAttributes extends HTMLPurifier_HTMLModule
|
|
{
|
|
var $name = 'NonXMLCommonAttributes';
|
|
|
|
var $attr_collections = array(
|
|
'Lang' => array(
|
|
'lang' => 'LanguageCode',
|
|
)
|
|
);
|
|
}
|
|
|