1

Topic: Flash/object issue - attributes emptied

I have trouble configuring htmLawed to leave object and param tags alone. I read this topic here http://www.bioinformatics.org/phplabware/forum/viewtopic.php?id=91 but it didn't help.

This is my code

<object width="425" height="350" data="http://www.youtube.com/v/6gmP4nk0EOE" type="application/x-shockwave-flash">
<param name="src" value="http://www.youtube.com/v/6gmP4nk0EOE">
</object>

And this is what I get after htmLawed finishes

<object width="" height="" data="" type=""><param name="" value="" /></object>

I even tried calling htmLawed function without configuration and it still does the same thing.

2

Re: Flash/object issue - attributes emptied

This appears to be a 'stripslashes' issue. Please refer to this post.

3

Re: Flash/object issue - attributes emptied

That worked great! Thank you for your fast answer.