Skip to content

Commit

Permalink
Bug 13618: Fix for system preference description
Browse files Browse the repository at this point in the history
If a syspref description contains html tag, do not display them

Signed-off-by: Katrin Fischer <[email protected]>

Signed-off-by: Brendan Gallagher [email protected]
  • Loading branch information
joubu authored and brendan1226 committed Jan 29, 2016
1 parent 0e98662 commit a967a09
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
<td><div>
[% FOREACH CHUNK IN LINE.CHUNKS %]
[% IF ( CHUNK.type_text ) %]
[% CHUNK.contents %]
[% CHUNK.contents.raw %]
[% ELSIF ( CHUNK.type_input ) %]
<input type="[%IF CHUNK.input_type %][% CHUNK.input_type %][% ELSE %]text[% END %]" name="pref_[% CHUNK.name %]" id="pref_[% CHUNK.name %]" class="preference preference-[% CHUNK.class or "short" %]" value="[% CHUNK.value %]" autocomplete="off" /> [% IF ( CHUNK.dateinput ) %]<span class="hint">[% INCLUDE 'date-format.inc' %]</span>[% END %]
[% ELSIF ( CHUNK.type_select ) %]
Expand Down

0 comments on commit a967a09

Please sign in to comment.