Skip to content

Commit

Permalink
fix(AU-1855): Fix email WCR email subject variable text (openedx#34488)
Browse files Browse the repository at this point in the history
* fix(AU-1855): Fix email WCR email subject variable text

* fix(AU-1855): Add filter force_escape before blockstrans
  • Loading branch information
Rodra committed Apr 8, 2024
1 parent ada5ad9 commit b42e66b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
<tr>
<td>
<h1>
{% trans "The course {{ course_title }} has been reset !" as tmsg %}{{ tmsg | force_escape }}
{% filter force_escape %}
{% blocktrans %}The course {{ course_title }} has been reset !{% endblocktrans %}
{% endfilter %}
</h1>
<p style="color: rgba(0,0,0,.75);">
{% filter force_escape %}
Expand Down

0 comments on commit b42e66b

Please sign in to comment.