I reckon changing that to strip_plaintext will do what you want it. I believe plaintext still accepts html but also converts valid html tags. And for those wanting to make the proper patch, that's the place to look. It will be roughly around line 419 of submit.pl. Also look at Slash::Utility::Data for available filters. The POD lists the available ones
Quick and easy hardcoded hack (Score:1)
$form->{story} = strip_html(url2html($form->{story}));
I reckon changing that to strip_plaintext will do what you want it. I believe plaintext still accepts html but also converts valid html tags. And for those wanting to make the proper patch, that's the place to look. It will be roughly around line 419 of submit.pl. Also look at Slash::Utility::Data for available filters. The POD lists the available ones
Good luck to the patcher =P