Skip to content
Snippets Groups Projects
Commit 419aeb38 authored by Thijs Kinkhorst's avatar Thijs Kinkhorst
Browse files

Do not encode urls

parent 7ffd7aa7
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<ul> <ul>
{% for key, link in links_auth %} {% for key, link in links_auth %}
<li> <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 %} {% if link.deprecated is defined and link.deprecated is not empty %}
<strong>{{ '{core:frontpage:deprecated}'|trans }}</strong> <strong>{{ '{core:frontpage:deprecated}'|trans }}</strong>
{% endif %} {% endif %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment