From 8457bc7002feb25f428fffaca6d741ab9d6856bd Mon Sep 17 00:00:00 2001
From: Thomas Steur <tsteur@users.noreply.github.com>
Date: Thu, 1 Dec 2016 07:58:58 +1300
Subject: [PATCH] Some characters in titles appear encoded (#10902)

fixes #10663

`e('html_attr')` is not needed as it is a plain translation anyway
---
 plugins/API/templates/listAllAPI.twig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/plugins/API/templates/listAllAPI.twig b/plugins/API/templates/listAllAPI.twig
index c84488b1ec..267e365a2a 100644
--- a/plugins/API/templates/listAllAPI.twig
+++ b/plugins/API/templates/listAllAPI.twig
@@ -10,7 +10,7 @@
 {% block content %}
 
 <div class="api-list">
-    <div piwik-content-block content-title="{{ title|e('html_attr') }}" rate="true">
+    <div piwik-content-block content-title="{{ title }}" rate="true">
         <p>{{ 'API_PluginDescription'|translate }}</p>
 
         <p>
@@ -27,4 +27,4 @@
     {{ list_api_methods_with_links|raw }}
     <br/>
 </div>
-{% endblock %}
\ No newline at end of file
+{% endblock %}
-- 
GitLab