Fixed deprecation for twig base.html.twig template

Using the filter tag is deprecated, replaced with apply tag which does the same thing.
This commit is contained in:
Jan Böhmer 2019-09-18 16:22:09 +02:00
parent 2441a25daa
commit f36b95c351

View file

@ -13,7 +13,7 @@
<meta name="msapplication-config" content="{{ asset('icons/browserconfig.xml') }}">
<meta name="theme-color" content="#ffffff">
<title>{% filter trim %}{% block title %}{{ partdb_title}}{% endblock %}{% endfilter %}</title>
<title>{% apply trim %}{% block title %}{{ partdb_title}}{% endblock %}{% endapply %}</title>
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}