1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-01-23 22:54:11 +01:00

17 lines
379 B
PHP
Raw Normal View History

2014-09-23 23:25:04 +00:00
<?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;
}
}
// vim: et sw=4 sts=4