From 419aeb38bed9196536a106f00bc1b95ea288c5df Mon Sep 17 00:00:00 2001
From: Thijs Kinkhorst <thijs@kinkhorst.com>
Date: Tue, 2 Jan 2018 14:07:48 +0000
Subject: [PATCH] Do not encode urls

---
 modules/core/templates/frontpage_auth.twig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/core/templates/frontpage_auth.twig b/modules/core/templates/frontpage_auth.twig
index 5062ed836..3d30318f4 100644
--- a/modules/core/templates/frontpage_auth.twig
+++ b/modules/core/templates/frontpage_auth.twig
@@ -13,7 +13,7 @@
     <ul>
     {% for key, link in links_auth %}
         <li>
-            <a href="{{ link.href|escape('url') }}">{{ link.text|trans|escape('html') }}</a>
+            <a href="{{ link.href }}">{{ link.text|trans|escape('html') }}</a>
             {% if link.deprecated is defined and link.deprecated is not empty %}
             <strong>{{ '{core:frontpage:deprecated}'|trans }}</strong>
             {% endif %}
-- 
GitLab