From c28a8f372d74e095a934e4d4e789345fb35d7722 Mon Sep 17 00:00:00 2001 From: Markus Klein <markus.klein@typo3.org> Date: Sat, 23 May 2015 19:14:02 +0200 Subject: [PATCH] [BUGFIX] Don't add TypoScript twice to defaultContentRendering MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Calling the addTypoScript() method with last parameter set to 'defaultContentRendering' must not add the TypoScript twice. Resolves: #67116 Releases: master, 6.2 Change-Id: I3161c62ac0ab25369fabc3f8163e5d92356aa0ca Reviewed-on: http://review.typo3.org/39680 Reviewed-by: Andreas Fernandez <typo3@scripting-base.de> Reviewed-by: Stefan Neufeind <typo3.neufeind@speedpartner.de> Reviewed-by: Helmut Hummel <helmut.hummel@typo3.org> Tested-by: Helmut Hummel <helmut.hummel@typo3.org> Reviewed-by: Stephan Großberndt <stephan@grossberndt.de> Tested-by: Stefan Neufeind <typo3.neufeind@speedpartner.de> --- .../sysext/core/Classes/Utility/ExtensionManagementUtility.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php b/typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php index 755d55ffffeb..dd1ea003d0f8 100644 --- a/typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php +++ b/typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php @@ -1426,11 +1426,12 @@ tt_content.' . $key . $suffix . ' { ' . $content; if ($afterStaticUid) { - $GLOBALS['TYPO3_CONF_VARS']['FE']['defaultTypoScript_' . $type . '.'][$afterStaticUid] .= $content; // If 'content (default)' is targeted (static uid 43), // the content is added after typoscript of type contentRendering, eg. css_styled_content, see EXT:frontend/TemplateService for more information on how the code is parsed if ($afterStaticUid === 'defaultContentRendering' || $afterStaticUid == 43) { $GLOBALS['TYPO3_CONF_VARS']['FE']['defaultTypoScript_' . $type . '.']['defaultContentRendering'] .= $content; + } else { + $GLOBALS['TYPO3_CONF_VARS']['FE']['defaultTypoScript_' . $type . '.'][$afterStaticUid] .= $content; } } else { $GLOBALS['TYPO3_CONF_VARS']['FE']['defaultTypoScript_' . $type] .= $content; -- GitLab