From 5af93ca92ad0786301c87cd3a9d5af962333b87a Mon Sep 17 00:00:00 2001 From: Benjamin Dalsass Date: Fri, 12 Sep 2025 15:38:01 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B08637=20-=20Alerts=20from=20dependabot,?= =?UTF-8?q?=20vulnerable=20libraries=20-=20remove=20deprecated=20call=20to?= =?UTF-8?q?=20getExpressionParser?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sources/Application/TwigBase/UI/UIBlockParser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/Application/TwigBase/UI/UIBlockParser.php b/sources/Application/TwigBase/UI/UIBlockParser.php index e1533e102..854c0571a 100644 --- a/sources/Application/TwigBase/UI/UIBlockParser.php +++ b/sources/Application/TwigBase/UI/UIBlockParser.php @@ -55,7 +55,7 @@ class UIBlockParser extends AbstractTokenParser $sType = $oStream->expect(Token::NAME_TYPE)->getValue(); - $oParams = $this->parser->getExpressionParser()->parseExpression(); + $oParams = $this->parser->parseExpression(); $oStream->expect(Token::BLOCK_END_TYPE);