<?php
require_once '/library/HTMLPurifier/HTMLPurifier.auto.php';
$config = HTMLPurifier_Config::createDefault();
$config->set('Filter.YouTube', true);
$purifier = new HTMLPurifier($config);
?>
(^ This is my only settings for HTMLPurifier)
It should <span class="youtube-embed">nto6EvPFO0Q</span> make this in to a Youtube embbeded video. But it's not working. (Nothing happens simply)
But loading like this works:
<object width="425" height="350">
<param name="movie" value="http://www.youtube.com/v/nto6EvPFO0Q />
<param name="wmode" value="transparent" />
<embed src="http://www.youtube.com/v/nto6EvPFO0Q"
type="application/x-shockwave-flash"
wmode="transparent" width="425" height="350" />
</object>
(Is this a security issue? ^)