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

Bugzilla/Util.pm

index defa1527085a5b773fa8c7834b9be410452f3d8a..f072285854a9012fbb5f833c1d849b146acf0f3c 100644 (file)
@@ -102,7 +102,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;