Skip to content
Snippets Groups Projects
Commit 5456ab51 authored by Torben Hansen's avatar Torben Hansen Committed by Richard Haeser
Browse files

[BUGFIX] Do not try to resolve TypoScript [ELSE] condition

Symfony Expression language can't resolve the TypoScript
[ELSE] condition. Instead a parsing error is logged which
is not helpful for users, who may believe, that [ELSE] is
not supported any more.

Therefore the Expression Language resolver now does not
parse the [ELSE] condition any more returns false instead.

Resolves: #91259
Releases: master, 10.4
Change-Id: I6701b06efe237f36aad19e8d20573c28750dab5d
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/67572


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarStefan Froemken <froemken@gmail.com>
Tested-by: default avatarRichard Haeser <richard@richardhaeser.com>
Reviewed-by: default avatarStefan Froemken <froemken@gmail.com>
Reviewed-by: default avatarRichard Haeser <richard@richardhaeser.com>
parent 89cce676
Branches
Tags
No related merge requests found
......@@ -76,6 +76,12 @@ class Resolver
*/
public function evaluate(string $condition): bool
{
// The TypoScript [ELSE] condition is not known by the Symfony Expression Language
// and must not be evaluated. If/else logic is handled in TypoScriptParser.
if (strtoupper($condition) === 'ELSE') {
return false;
}
return (bool)$this->expressionLanguage->evaluate($condition, $this->expressionLanguageVariables);
}
......
......@@ -85,6 +85,16 @@ class ResolverTest extends UnitTestCase
self::assertSame($expectedResult, $expressionLanguageResolver->evaluate($expression));
}
/**
* @test
*/
public function typoScriptElseConditionIsNotEvaluatedAndAlwaysReturnsFalse()
{
$request = new ServerRequest();
$expressionLanguageResolver = new Resolver('default', [], $request);
self::assertFalse($expressionLanguageResolver->evaluate('ELSE'));
}
/**
* @return array
*/
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment