From 3b3f1806ce1edf6cb05551272a5fddd4115a6b4a Mon Sep 17 00:00:00 2001 From: Molkobain Date: Thu, 1 Jul 2021 09:54:48 +0200 Subject: [PATCH] Fix resources URL not being printed correctly If there was any parameters in the URL it would not work as the `&` would have been printed as `&`, see similar issue in the previous commit --- templates/pages/backoffice/webpage/layout.html.twig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/pages/backoffice/webpage/layout.html.twig b/templates/pages/backoffice/webpage/layout.html.twig index 8e7b8dcc4..cfd1833d6 100644 --- a/templates/pages/backoffice/webpage/layout.html.twig +++ b/templates/pages/backoffice/webpage/layout.html.twig @@ -13,7 +13,7 @@ {% endif %} {{ aPage.sTitle }} {% if aPage.sFaviconUrl is defined %} - + {% endif %} @@ -23,7 +23,7 @@ {% block iboPageCssFiles %} {% for aCssFileData in aPage.aCssFiles %} {% if aCssFileData['condition'] != '' %}{% endif %} {% endfor %} {% endblock %} @@ -59,7 +59,7 @@ {% endif %} {% block iboPageJsFiles %} {% for sJsFile in aPage.aJsFiles %} - + {% endfor %} {% endblock %}