mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
15 lines
340 B
PHP
15 lines
340 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Implements required attribute stipulation for <script>
|
||
|
*/
|
||
|
class HTMLPurifier_AttrTransform_ScriptRequired extends HTMLPurifier_AttrTransform
|
||
|
{
|
||
|
public function transform($attr, $config, $context) {
|
||
|
if (!isset($attr['type'])) {
|
||
|
$attr['type'] = 'text/javascript';
|
||
|
}
|
||
|
return $attr;
|
||
|
}
|
||
|
}
|