]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Merge pull request #3592 from Simounet/fix/html-entities-on-default-title
authorJérémy Benoist <j0k3r@users.noreply.github.com>
Sat, 24 Feb 2018 21:24:24 +0000 (22:24 +0100)
committerGitHub <noreply@github.com>
Sat, 24 Feb 2018 21:24:24 +0000 (22:24 +0100)
Fix title card HTML parsing

src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_tags.html.twig

index 1317b1295a2038d63c29f1b91f9f7d746a8e51fe..73998b58def4cde5d1374658c72a0b0fdd56050b 100644 (file)
@@ -3,7 +3,7 @@
         {% for tag in tags %}
             <li class="chip">
                 <a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{ tag.label }}</a>
-                {% if withRemove %}
+                {% if withRemove is defined and withRemove == true %}
                     <a href="{{ path('remove_tag', { 'entry': entryId, 'tag': tag.id }) }}" onclick="return confirm('{{ 'entry.confirm.delete_tag'|trans|escape('js') }}')">
                         <i class="material-icons vertical-align-middle">delete</i>
                     </a>