]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 459365 - Scrubber should let <fieldset> and <legend> pass.
authorwurblzap%gmail.com <>
Sat, 11 Oct 2008 12:24:28 +0000 (12:24 +0000)
committerwurblzap%gmail.com <>
Sat, 11 Oct 2008 12:24:28 +0000 (12:24 +0000)
Patch by Marc Schumann <wurblzap@gmail.com>;
r/a=mkanat

Bugzilla/Util.pm

index 0301969f64e2b7470d4315b7fafde41f41c561aa..faf7a57db051a7e7cc2a8344f5b33e812b2b4c23 100644 (file)
@@ -100,7 +100,8 @@ sub html_light_quote {
 
     # List of allowed HTML elements having no attributes.
     my @allow = qw(b strong em i u p br abbr acronym ins del cite code var
-                   dfn samp kbd big small sub sup tt dd dt dl ul li ol);
+                   dfn samp kbd big small sub sup tt dd dt dl ul li ol
+                   fieldset legend);
 
     # Are HTML::Scrubber and HTML::Parser installed?
     eval { require HTML::Scrubber;