Skip to content
Snippets Groups Projects
Commit 036fd2c0 authored by Elias Häußler's avatar Elias Häußler Committed by Stefan Bürk
Browse files

[BUGFIX] Render "Before" and "After" sections in EXT:info modules

With #100663, "Before" and "After" sections for backend modules
were introduced. However, the appropriate <f:render> calls were
applied to the main module layout in EXT:backend only. Since
EXT:info provides an overridden layout, those sections were no
longer rendered, leading to invalid JavaScript and missing
functionalities.

This is now fixed and the appropriate <f:render> calls are added
to the module layout of EXT:info as well.

Resolves: #101876
Related: #100663
Releases: main, 12.4
Change-Id: I4479811e974433fa1201c7fd2c12be99bf921663
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/80902


Reviewed-by: default avatarStefan Bürk <stefan@buerk.tech>
Tested-by: default avatarStefan Bürk <stefan@buerk.tech>
Tested-by: default avatarcore-ci <typo3@b13.com>
parent 078de3a2
Branches
Tags
No related merge requests found
......@@ -3,6 +3,8 @@
data-namespace-typo3-fluid="true"
>
<f:render section="Before" arguments="{_all}" optional="true" />
<div class="module {moduleClass}" data-module-id="{moduleId}" data-module-name="{moduleName}">
<f:if condition="{docHeader.enabled}">
<f:render partial="DocHeader" arguments="{docHeader:docHeader}" />
......@@ -20,4 +22,6 @@
</div>
</div>
<f:render section="After" arguments="{_all}" optional="true" />
</html>
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