mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-07-14 19:00:13 -04:00
15 lines
338 B
PHP
15 lines
338 B
PHP
<?php defined("SYSPATH") or die("No direct script access.");
|
|
|
|
class HTMLPurifier_HTMLModule_NonXMLCommonAttributes extends HTMLPurifier_HTMLModule
|
|
{
|
|
public $name = 'NonXMLCommonAttributes';
|
|
|
|
public $attr_collections = array(
|
|
'Lang' => array(
|
|
'lang' => 'LanguageCode',
|
|
)
|
|
);
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|