Skip to content

Commit

Permalink
Fix escaping for edittags page
Browse files Browse the repository at this point in the history
  • Loading branch information
Cocoa authored and kareila committed May 22, 2024
1 parent 696ffd9 commit 83b4c6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/edittags.tt
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
[% IF usertags.size > 0 %]
<select name='tags' multiple='multiple' class='multiple-select tagbox_nohist' onChange='edit_tagselect(this)'>
[% FOREACH tag IN usertags %]
<option value='[% tag.name | html %]'>[% tag.name | html %]</option>
<option value="[% tag.name | html %]">[% tag.name | html %]</option>
[% END %]
</select>
[% END %]
Expand Down

0 comments on commit 83b4c6b

Please sign in to comment.