Skip to content

Commit a53cd2d

Browse files
committed
Merge tag '2.4.4'
Hotfix release 2.4.4 Fix template override all
2 parents 2d97297 + 9f56061 commit a53cd2d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Resources/contao/templates/dcbe_general_edit.html5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ $GLOBALS['TL_CSS']['cca.dc-general.generalDriver'] = '/bundles/ccadcgeneral/css/
8888
<?php endif; ?>
8989

9090
<?php foreach($this->fieldsets as $arrFieldset):
91-
if($arrFieldset['legend'] ?? null):
91+
$class = $arrFieldset['class'] ?? '';
92+
if ($arrFieldset['legend'] ?? null):
9293
$paletteId = 'pal_' . StringUtil::specialchars($arrFieldset['legend']);
93-
$class = $arrFieldset['class'];
9494
if (null !== ($fieldsetState = ($fieldsetStates[$this->table][$paletteId] ?? null))) {
9595
$class = \str_replace(' collapsed', '', $class);
9696
if (0 === $fieldsetState) {

0 commit comments

Comments
 (0)