|
CollectErrors and disappearing attributes May 27, 2008 05:13AM |
Registered: 4 years ago Posts: 2 |
Just a little bug i've found in Demo section:
input:
<table width="100" border=1 background="img.jpg">
<tr>
<td></td>
</tr>
</table>
1. default settings, output:
<table width="100" border="1"><tr><td></td> </tr></table>
2. CollectErrors = Yes, output:
<table> <tr> <td></td> </tr> </table>
So we've lost all attributes.
Ok, now i know that CollectErrors is experimental feature and is subject to errors, but for HTML Purifier newbies like me this behaviour may look frustrating.
Don't get me wrong, your project is awesome and saved me from reinventing my own stuff :)
|
Re: CollectErrors and disappearing attributes May 27, 2008 03:37PM |
Admin Registered: 6 years ago Posts: 2,632 |
|
Re: CollectErrors and disappearing attributes May 29, 2008 12:02PM |
Registered: 4 years ago Posts: 2 |