Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm having trouble with HTMLPurifier removing my style tags. This is the (test) configuration I use:

$config = HTMLPurifier_Config::createDefault();
$config->set('Core.Encoding', 'UTF-8'); // replace with your encoding
$config->set('HTML.Doctype', 'HTML 4.01 Transitional'); // replace with your doctype
$config->set('Cache.DefinitionImpl', null);
$config->set('HTML.AllowedElements','div');
$config->set('HTML.AllowedAttributes', "*.style");
$config->set('CSS.AllowedProperties', 'background-color');

And when I filter this HTML:

<div style="background-color: #fff;">test</div>
<div style="border: 1px solid #000;">test</div>

This is what I get:

<div>test</div>
<div style="border:;">test</div>

I don't understand why the border attribute is left (but it's value is stripped), and why the background-color attribute is removed. How do I configure so that those style tags are allowed through the filter? Also, I want to allow any style values for the style attributes that I allow.

share|improve this question
Does it remove even if you comment out your configuration? – Edward Z. Yang Oct 19 '11 at 1:15
I apologize - after some more hours of troubleshooting I found the error and it was unrelated to HTML Purifier. Once I fixed it, the config settings worked as expected. Thanks for a great library. – Johan Oct 19 '11 at 3:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.