diff options
author | myk%mozilla.org <> | 2002-11-10 14:13:28 +0100 |
---|---|---|
committer | myk%mozilla.org <> | 2002-11-10 14:13:28 +0100 |
commit | 9a0ca71bd6e67b6433326bbfe827348cd0636964 (patch) | |
tree | f2d0922dae7d384ac67fbb7d43eb15ee3a5c4b27 /template/en | |
parent | f1dc04d3d909fa8879f781f02c136bd18b526733 (diff) | |
download | bugzilla-9a0ca71bd6e67b6433326bbfe827348cd0636964.tar.gz bugzilla-9a0ca71bd6e67b6433326bbfe827348cd0636964.tar.xz |
Fix for bug 179329: filters HTML out of quips on "show all quips" page
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/list/quips.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/list/quips.html.tmpl b/template/en/default/list/quips.html.tmpl index c874b14d7..f83f08128 100644 --- a/template/en/default/list/quips.html.tmpl +++ b/template/en/default/list/quips.html.tmpl @@ -59,7 +59,7 @@ </h2> <ul> [% FOREACH quip = quips %] - <li>[% quip %]</li> + <li>[% quip FILTER html %]</li> [% END %] </ul> [% ELSE %] |