mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-07-30 03:30:34 -04:00
17 lines
444 B
PHP
17 lines
444 B
PHP
<?php defined("SYSPATH") or die("No direct script access.");
|
|
|
|
/**
|
|
* Writes default type for all objects. Currently only supports flash.
|
|
*/
|
|
class HTMLPurifier_AttrTransform_SafeObject extends HTMLPurifier_AttrTransform
|
|
{
|
|
public $name = "SafeObject";
|
|
|
|
function transform($attr, $config, $context) {
|
|
if (!isset($attr['type'])) $attr['type'] = 'application/x-shockwave-flash';
|
|
return $attr;
|
|
}
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|