aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/home.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/home.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/home.twig')
-rw-r--r--tpl/home.twig2
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/home.twig b/tpl/home.twig
index 03f9f70d..58586d7a 100644
--- a/tpl/home.twig
+++ b/tpl/home.twig
@@ -13,7 +13,7 @@
13 {{ page_links | raw }} 13 {{ page_links | raw }}
14 {% for entry in entries %} 14 {% for entry in entries %}
15 <div id="entry-{{ entry.id|e }}" class="entrie"> 15 <div id="entry-{{ entry.id|e }}" class="entrie">
16 <h2><a href="index.php?view=view&id={{ entry.id|e }}">{{ entry.title|e }}</a></h2> 16 <h2><a href="index.php?view=view&id={{ entry.id|e }}">{{ entry.title|raw }}</a></h2>
17 <ul class="tools"> 17 <ul class="tools">
18 <li> 18 <li>
19 <a title="{% trans "toggle mark as read" %}" class="tool archive {% if entry.is_read == 0 %}archive-off{% endif %}" href="./?action=toggle_archive&id={{ entry.id|e }}"><span></span></a></li> 19 <a title="{% trans "toggle mark as read" %}" class="tool archive {% if entry.is_read == 0 %}archive-off{% endif %}" href="./?action=toggle_archive&id={{ entry.id|e }}"><span></span></a></li>