|
Lars
Maximum execution time with certain inputMay 17, 2010 04:04AM |
Hi,
HTMLpurifier 4.1.0 works perfectly here, except for a few special input cases, where it enters a neverending loop:
require_once 'htmlpurifier/library/HTMLPurifier.auto.php'; $config = HTMLPurifier_Config::createDefault(); $purifier = new HTMLPurifier($config); $t = '<i><ul></ul></i>'; $p = $purifier->purify($t);
You can replace the I tag with B or STRONG and it will still run forever.
This is running on PHP 5.3.2.
Best regards Lars
|
Re: Maximum execution time with certain input May 17, 2010 11:24AM |
Admin Registered: 6 years ago Posts: 2,638 |
|
Re: Maximum execution time with certain input May 17, 2010 11:30PM |
Admin Registered: 6 years ago Posts: 2,638 |
Fixed in 875b0febde.
|
Lars
Re: Maximum execution time with certain inputMay 18, 2010 02:27AM |