aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/view.twig
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-08-23 21:06:45 +0200
committerNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-08-23 21:06:45 +0200
commitffc966d72fa2b5016e143d490994459ff4591571 (patch)
treece9abc86304e9a23850969b69cfc534829e32ce8 /tpl/view.twig
parent1e0f9166cc9a9d99d48ac1d9b3159adb8a1f8c9c (diff)
downloadwallabag-ffc966d72fa2b5016e143d490994459ff4591571.tar.gz
wallabag-ffc966d72fa2b5016e143d490994459ff4591571.tar.zst
wallabag-ffc966d72fa2b5016e143d490994459ff4591571.zip
fix bug #151: HTML entities in titles are encoded twice
Diffstat (limited to 'tpl/view.twig')
-rw-r--r--tpl/view.twig2
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/view.twig b/tpl/view.twig
index ba0aae30..0456471e 100644
--- a/tpl/view.twig
+++ b/tpl/view.twig
@@ -16,7 +16,7 @@
16 </ul> 16 </ul>
17 </div> 17 </div>
18 <header class="mbm"> 18 <header class="mbm">
19 <h1>{{ entry.title|e }}</h1> 19 <h1>{{ entry.title|raw }}</h1>
20 <div class="vieworiginal txtright small"><a href="{{ entry.url|e }}" target="_blank" title="{% trans "original" %} : {{ entry.title|e }}">{{ entry.url | e | getDomain }}</a></div> 20 <div class="vieworiginal txtright small"><a href="{{ entry.url|e }}" target="_blank" title="{% trans "original" %} : {{ entry.title|e }}">{{ entry.url | e | getDomain }}</a></div>
21 </header> 21 </header>
22 <article> 22 <article>