Skip to content
Snippets Groups Projects
Commit 08d08fe1 authored by mogensf's avatar mogensf Committed by Stefan Bürk
Browse files

[BUGFIX] Avoid data array to be null in CObjectViewHelper

The CObjectViewHelper didn't render IMAGE-objects with
GIFBUILDER properly.

This change avoids the data array in the renderStatic
method of the CObjectViewHelper to be null.

Resolves: #103863
Related: #102931
Releases: main
Change-Id: I7ddbbafbae3d835ecae05c5781e27c633f7441ce
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/84320


Reviewed-by: default avatarStefan Bürk <stefan@buerk.tech>
Tested-by: default avatarcore-ci <typo3@b13.com>
Reviewed-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
Tested-by: default avatarStefan Bürk <stefan@buerk.tech>
Tested-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
parent c24627b2
Branches
Tags
No related merge requests found
......@@ -116,7 +116,7 @@ final class CObjectViewHelper extends AbstractViewHelper
*/
public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext): string
{
$data = $renderChildrenClosure();
$data = $renderChildrenClosure() ?? [];
$typoscriptObjectPath = (string)$arguments['typoscriptObjectPath'];
$currentValueKey = $arguments['currentValueKey'];
$table = $arguments['table'];
......
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