root/afridex/plugins/Flutter/purifier_lib/HTMLPurifier/AttrTransform/ScriptRequired.php @ 21

Revision 21, 354 bytes (checked in by admin, 18 years ago)
Line 
1<?php
2
3/**
4 * Implements required attribute stipulation for <script>
5 */
6class HTMLPurifier_AttrTransform_ScriptRequired extends HTMLPurifier_AttrTransform
7{
8    public function transform($attr, $config, $context) {
9        if (!isset($attr['type'])) {
10            $attr['type'] = 'text/javascript';
11        }
12        return $attr;
13    }
14}
Note: See TracBrowser for help on using the browser.