Actions
Bug #93290
closed"split" throws TypeError under DebugExceptionHandler
Start date:
2021-01-14
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
7.4
Tags:
Complexity:
easy
Is Regression:
Sprint Focus:
Description
Typoscript:
1 = LOAD_REGISTER 1 { backendLayout.cObject = TEXT backendLayout.cObject { data = levelfield:-1, backend_layout_next_level, slide override.field = backend_layout split { token = pagets__ 1.current = 1 1.wrap = | } ifEmpty = default } }
This will throw TypeException
inside ContentObjectRenderer::splitObj()
(see the attachment). The problem here is that this method expects either wrap
or cObjNum
in the split configuration but none of these properties are mandatory according to the documentation. Then in the loop there is a null
passed to $this->stdWrapValue('wrap', $splitArr[$a]);
as a second argument.
Files
Actions