Skip to content

Commit

Permalink
Merge pull request #58 from christianp/issue-56
Browse files Browse the repository at this point in the history
don't double escape discussion subjects
  • Loading branch information
Dagefoerde authored Jul 17, 2020
2 parents eaf990b + 90f90f4 commit c7640c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/discussion_list.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
{{/canviewdiscussions}}

<td class="topic starter">
<a href="{{ subjectlink }}">{{ subjecttext }}</a>
<a href="{{ subjectlink }}">{{{ subjecttext }}}</a>
</td>

<td class="picture">
Expand Down
4 changes: 2 additions & 2 deletions templates/question.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
{{#isfirstpost}}
{{! The subject. }}
<div class="subject" role="heading" aria-level="2">
{{ subject }}
{{{ subject }}}
</div>
{{/isfirstpost}}

Expand Down Expand Up @@ -142,4 +142,4 @@
</div>
</div>
</div>
</div>

0 comments on commit c7640c4

Please sign in to comment.