From 569bc842986ccc1378e906da688eded2b16fb6bb Mon Sep 17 00:00:00 2001 From: Oliver Thiele Date: Thu, 3 Oct 2024 09:53:31 +0200 Subject: [PATCH] =?UTF-8?q?[BUGFIX]=20Remove=20unnecessary=20=E2=80=9Cdata?= =?UTF-8?q?.=E2=80=9D=20in=20=5FDefault.html?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Accessing the data does not work with contentElement.data.[property], but directly with contentElement.[property] (Tested in TYPO3 version 13.4.0-dev) --- .../_PageContentFetchingProcessor/_Default.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/DataProcessing/_PageContentFetchingProcessor/_Default.html b/Documentation/DataProcessing/_PageContentFetchingProcessor/_Default.html index 2fc21440f..6b8c2d636 100644 --- a/Documentation/DataProcessing/_PageContentFetchingProcessor/_Default.html +++ b/Documentation/DataProcessing/_PageContentFetchingProcessor/_Default.html @@ -1,8 +1,8 @@
-

{contentElement.data.header}

-

{contentElement.data.bodytext -> f:format.html()}

+

{contentElement.header}

+

{contentElement.bodytext -> f:format.html()}