From f36b95c351a520a5dca2d72f126e2418fba9674e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Wed, 18 Sep 2019 16:22:09 +0200 Subject: [PATCH] Fixed deprecation for twig base.html.twig template Using the filter tag is deprecated, replaced with apply tag which does the same thing. --- templates/base.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/base.html.twig b/templates/base.html.twig index 3d131aa6..279f8d8e 100644 --- a/templates/base.html.twig +++ b/templates/base.html.twig @@ -13,7 +13,7 @@ - {% filter trim %}{% block title %}{{ partdb_title}}{% endblock %}{% endfilter %} + {% apply trim %}{% block title %}{{ partdb_title}}{% endblock %}{% endapply %} {% block stylesheets %} {{ encore_entry_link_tags('app') }} {% endblock %}