summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorwurblzap%gmail.com <>2008-10-10 18:16:51 +0200
committerwurblzap%gmail.com <>2008-10-10 18:16:51 +0200
commitd06524a0338c32aafd281cc8c283d01712b13313 (patch)
tree41a6602027aa208b9f1213a442b97da6d09555fe /Bugzilla
parent01ca88808b4b9bf32f3a1becc90fd500df89e274 (diff)
downloadbugzilla-d06524a0338c32aafd281cc8c283d01712b13313.tar.gz
bugzilla-d06524a0338c32aafd281cc8c283d01712b13313.tar.xz
Bug 459365 - Scrubber should let <fieldset> and <legend> pass.
Patch by Marc Schumann <wurblzap@gmail.com>; r/a=mkanat
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Util.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm
index defa15270..f07228585 100644
--- a/Bugzilla/Util.pm
+++ b/Bugzilla/Util.pm
@@ -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;