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.

The site is 404'ing so I can't search there. I've tried looking at the docs but it isn't really clear where I might find it. I have made a config with the list of tags I want to allow and included <a> but HTML Purifier removes the href. What do I need to add to the config to allow the href as it is in the default settings of HTML Purifier?

-edit-

This is what I have now:

$config = HTMLPurifier_Config::createDefault();
    $config->set('HTML.AllowedAttributes', 'a.href');
    $config->set('HTML.Allowed', 'various tags');
    $config->set("HTML.Nofollow", true);
    $config->set('CSS.AllowedProperties', '');
share|improve this question

2 Answers

Href is allowed by default. What is more likely is that you have magic quotes accidentally enabled. Turn them off.

(P.S. The website is down because Dreamhost sucks, and ate its disks. We're waiting for them to finish recovery...)

share|improve this answer
No, that crap is definitely off. Through more Googling I found $config->set('HTML.AllowedAttributes', 'a.href'); and adding that works. I will put what I have and you can see if I have something wrong. I'll edit my post. – qitch Apr 6 '12 at 22:32
OK, your problem is you're not using the defaults, you've specified %HTML.Allowed. You need to specify attributes to be allowed along with tags in HTML.Allowed. – Edward Z. Yang Apr 7 '12 at 23:35
up vote 1 down vote accepted

Adding $config->set('HTML.AllowedAttributes', 'a.href'); did the trick. However, I would like to hear Edward Yang's thoughts on the matter as he believes it shouldn't be necessary according to his reply.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.