Skip to content

Commit

Permalink
Remove two leftover clearing DIVs (see #7300)
Browse files Browse the repository at this point in the history
Description
-----------

We render the rows with flexbox now.

Commits
-------

819027d1 Remove two leftover clearing DIVs
  • Loading branch information
leofeyer authored Jun 24, 2024
1 parent e16deb3 commit 86cf7e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contao/drivers/DC_Folder.php
Original file line number Diff line number Diff line change
Expand Up @@ -2759,7 +2759,7 @@ protected function generateTree($path, $intMargin, $mount=false, $blnProtected=t
}
}

$return .= '</div><div style="clear:both"></div></li>';
$return .= '</div></li>';

// Call the next node
if (!empty($content) && $blnIsOpen)
Expand Down Expand Up @@ -2860,7 +2860,7 @@ protected function generateTree($path, $intMargin, $mount=false, $blnProtected=t
}
}

$return .= $_buttons . '</div><div style="clear:both"></div></li>';
$return .= $_buttons . '</div></li>';
}

return $return;
Expand Down

0 comments on commit 86cf7e1

Please sign in to comment.