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 trying to set some configurations for HTMLPurifier, and everything works on my dev machine, but on test, it fails.

with the error Class 'HTMLPurifier_config' not found. but if I remove config, it runs no problem. I'm using HTMLPurifier 4.0.0

    $config=HTMLPurifier_config::createDefault();
        $config->set('AutoFormat','AutoParagraph', true);
        $config->set('AutoFormat','Linkify', true);

 $purifier = new HTMLPurifier($config);

I am loading HTMLPurifier with HTMLPurifier.auto.php, but as I said, this is working in dev, but not testing.

share|improve this question

1 Answer

up vote 2 down vote accepted

config needs to be capitalized.

share|improve this answer
apparently I had been working off old documentation. Along with config being 'Config', the set is now 'set('AutoFormat.AutoParagraph', true). – pedalpete Jun 3 '10 at 20:06
config was never lower-cased, but the configuration format has changed recently (the old style still works, it just emits warnings.) – Edward Z. Yang Jun 4 '10 at 2:08

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.