Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
- Fix `hideBody` hidden class
  • Loading branch information
stefanheimes committed Dec 1, 2019
2 parents b270a4f + d1e4e07 commit 7a535a6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Contao/Widgets/MultiColumnWizard.php
Expand Up @@ -25,6 +25,7 @@
* @author Gerald Meier <garyee@gmx.de>
* @author Ingolf Steinhardt <info@e-spin.de>
* @author Jozef Dvorský <creatingo@users.noreply.github.com>
* @author Julian Aziz Haslinger <me@aziz.wtf>
* @author Kester Mielke <kester.mieke@gmx.net>
* @author mediabakery <s.tilch@mediabakery.de>
* @author Oliver Hoff <oliver@hofff.com>
Expand Down Expand Up @@ -465,7 +466,7 @@ protected function getMcWDcaPickerWizard(
// Return the result.
return $event->getWizard();
}

/**
* Try to get the DC Drive.
* For the DCG we have to handel the HTTP_X_REQUESTED_WITH, to cancel an endless loop.
Expand Down Expand Up @@ -1358,7 +1359,7 @@ protected function generateTable(
$return .= \sprintf('<tr data-rowId="%s">', $k);
foreach ($arrValue as $itemValue) {
if ($itemValue['hide'] == true) {
$itemValue['tl_class'] .= ' invisible';
$itemValue['tl_class'] .= ' hidden';
}

$return .= '<td'
Expand Down

0 comments on commit 7a535a6

Please sign in to comment.