mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 15:48:42 +00:00
4b862f64e6
- Generator now takes $config and $context during instantiation - Double quotes outside of attributes are not escaped git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1700 48356398-32a2-884e-a903-53898d9a118a
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;
|
|
}
|
|
}
|