diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-11-26 20:16:02 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-11-26 20:16:02 +0100 |
commit | ccf2d3e5e476ce72cb95894b68358950bfa1d24b (patch) | |
tree | df12dd6b183843f8685de918b67cc069f83b0966 | |
parent | 77b21ad273f6da6a3c6b221da3bc867b3962ca39 (diff) | |
download | bugzilla-ccf2d3e5e476ce72cb95894b68358950bfa1d24b.tar.gz bugzilla-ccf2d3e5e476ce72cb95894b68358950bfa1d24b.tar.xz |
Bug 814841: The description of custom fields is not filtered in the help page
r=dkl a=LpSolit
-rw-r--r-- | template/en/default/pages/fields.html.tmpl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/template/en/default/pages/fields.html.tmpl b/template/en/default/pages/fields.html.tmpl index 5ad5f7127..7412829d9 100644 --- a/template/en/default/pages/fields.html.tmpl +++ b/template/en/default/pages/fields.html.tmpl @@ -214,8 +214,7 @@ <dt id="[% field FILTER html %]">[% field_desc FILTER html %]</dt> <dd> - [% SET help_text = field_help_map.${field_desc}.help %] - [% help_text FILTER none %] + [% field_help_map.${field_desc}.help FILTER html_light %] </dd> [% END %] </dl> |