From 35fac8066f1098e9be0ec2f6c826bb0f1413123a Mon Sep 17 00:00:00 2001 From: Christoph Lehmann <christoph.lehmann@networkteam.com> Date: Mon, 4 Sep 2017 17:24:23 +0200 Subject: [PATCH] [BUGFIX] Show spaces of content elements in page module Resolves: #82290 Releases: master,8.7 Change-Id: Ie988290ae4431f8a77dc2c38397429b9fa0c95ef Reviewed-on: https://review.typo3.org/53879 Reviewed-by: Stefan Neufeind <typo3.neufeind@speedpartner.de> Tested-by: Stefan Neufeind <typo3.neufeind@speedpartner.de> Reviewed-by: Riccardo De Contardi <erredeco@gmail.com> Tested-by: Riccardo De Contardi <erredeco@gmail.com> Tested-by: TYPO3com <no-reply@typo3.com> Reviewed-by: Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by: Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by: Simon Praetorius <simon@praetorius.me> Tested-by: Simon Praetorius <simon@praetorius.me> Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch> Tested-by: Christian Kuhn <lolli@schwarzbu.ch> --- typo3/sysext/backend/Classes/View/PageLayoutView.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/backend/Classes/View/PageLayoutView.php b/typo3/sysext/backend/Classes/View/PageLayoutView.php index 3edd00be247b..a7067bb20c42 100644 --- a/typo3/sysext/backend/Classes/View/PageLayoutView.php +++ b/typo3/sysext/backend/Classes/View/PageLayoutView.php @@ -1472,7 +1472,7 @@ class PageLayoutView extends \TYPO3\CMS\Recordlist\RecordList\AbstractDatabaseRe $content = ''; // Get processed values: $info = []; - $this->getProcessedValue('tt_content', 'starttime,endtime,fe_group,spaceBefore,spaceAfter', $row, $info); + $this->getProcessedValue('tt_content', 'starttime,endtime,fe_group,space_before_class,space_after_class', $row, $info); // Content element annotation if (!empty($GLOBALS['TCA']['tt_content']['ctrl']['descriptionColumn'])) { -- GitLab