I have an installation of WPMU 1.2.4 and would like to disable the KSES filtering of in-line HTML style on posts, but keep it for comments. Do I have to go through that hideous $allowedposttags
array in kses.php and add 'style' => array()
to all the elements I wish to style, or there a more expedient method? I might be able to do it with grep, but it's chancy, as my regexp writing skills aren't exactly start, if you know what I mean.
None of my users are hackers, so I feel the potential security risk to visitors is minimal. Leaving the filter in place on comments should keep the majority of malicious persons at bay.
Does anyone have a suggestion?