Topic: deny_attribute bug in 1.0.7?
Greetings. The documentation says:
Admins, however, may still want to completely deny the 'style' attribute, e.g., with code like
$processed = htmLawed($text, array('safe'=>1, 'deny_attribute'=>'on*, style'));
However, this doesn't work unless you add a trailing comma:
$processed = htmLawed($text, array('safe'=>1, 'deny_attribute'=>'on*,style,'));
Thanks for an awesome utility!