Okay, I tried it, and IE worked fine, but now a Part of my Embed was kicked.
Here's the Config I use:
$config_filter = array(
'comments'=>0,
'cdata'=>0,
'safe'=>0,
'deny_attribute'=>'on*',
'elements'=>'*-applet-iframe-script', // object, embed allowed
'schemes'=>'classid:clsid; href: aim, feed, file, ftp, gopher, http, https, irc, mailto, news, nntp, sftp, ssh, telnet; style: nil; *:file, http, https' // clsid allowed in classid
);
That's my Script:
<object id="player" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" name="player" width="425" height="344">
<param name="movie" value="../FLASH/player.swf" />
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="autostart" value="true" />
<param name="flashvars" value="file=../FLASH/Movie.flv&image=../FLASH/Pic.jpg" />
<embed
type="application/x-shockwave-flash"
id="player2"
name="player2"
src="../FLASH/player.swf"
width="425"
height="344"
allowscriptaccess="always"
allowfullscreen="true"
play="true"
autostart="true"
flashvars="file=../FLASH/Movie.flv&image=../FLASH/Pic.jpg"
/>
</object>
And that's, how it looks after htmLawed:
<object id="player" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" name="player" width="425" height="344">
<param name="movie" value="../FLASH/player.swf" />
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="autostart" value="true" />
<param name="flashvars" value="file=../FLASH/Movie.flv&image=../FLASH/Pic.jpg" />
<embed type="application/x-shockwave-flash" id="player2" name="player2" src="../FLASH/player.swf" width="425" height="344" />
</object>
The embed part is cut of here...
Can you give me a hint for a better config ?
Also not changing anymore the &-sign ? (I commented the PHP for that)...
Thanks in Advance
Tom