From 9e53071ef0bc8f8a16ee82c4c1c45bfc1bf7d5a3 Mon Sep 17 00:00:00 2001 From: Adeel Khan Date: Thu, 27 Jun 2019 11:40:43 +0500 Subject: [PATCH] Fixes template for incorrect trans escaping. --- lms/templates/wiki/article.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/templates/wiki/article.html b/lms/templates/wiki/article.html index 559e8a939e..542512c762 100644 --- a/lms/templates/wiki/article.html +++ b/lms/templates/wiki/article.html @@ -27,7 +27,7 @@ {% include "wiki/includes/article_menu.html" %}
- {% trans "Last modified:" % as tmsg} | {{ tmsg | force_escape}}
+ {% trans "Last modified:" as tmsg %} {{ tmsg | force_escape}}
{{ article.current_revision.modified }}