diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-04-16T09·03+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-04-16T09·03+0200 |
commit | 9c2359c8c9ba07b4449c7a47612bbed505e35de4 (patch) | |
tree | 336c9c18af23d4eac680cda3ae54e45b12975a7a /templates/thread.html | |
parent | 1462810963f54f59b5eacd8657057583c87dc0e4 (diff) |
fix(templates): Fix double-escaping of thread titles
Diffstat (limited to 'templates/thread.html')
-rw-r--r-- | templates/thread.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/thread.html b/templates/thread.html index a34308fe870c..8c7678cf2600 100644 --- a/templates/thread.html +++ b/templates/thread.html @@ -8,7 +8,7 @@ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> <!-- Custom CSS additions --> <style>img { max-width:100%; height:auto; }</style> - <title>Converse: {{ title }}</title> + <title>Converse: {{ title | safe }}</title> </head> <body> <header> @@ -23,7 +23,7 @@ <div class="container"> <div class="list-group d-flex flex-column"> <div class="list-group-item d-flex"> - <h3>{{ title }}</h3> + <h3>{{ title | safe }}</h3> </div> {% for post in posts -%} |