Skip to content
Snippets Groups Projects
Commit 3c6066cf authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #45706 by markus: keep up with CSS improvements.

parent b9f6b72a
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -578,7 +578,7 @@ function book_tree_recurse($nid, $depth, $children, $unfold = array()) { ...@@ -578,7 +578,7 @@ function book_tree_recurse($nid, $depth, $children, $unfold = array()) {
if ($tree = book_tree_recurse($node->nid, $depth - 1, $children, $unfold)) { if ($tree = book_tree_recurse($node->nid, $depth - 1, $children, $unfold)) {
$output .= '<li class="expanded">'; $output .= '<li class="expanded">';
$output .= l($node->title, 'node/'. $node->nid); $output .= l($node->title, 'node/'. $node->nid);
$output .= '<ul>'. $tree .'</ul>'; $output .= '<ul class="menu">'. $tree .'</ul>';
$output .= '</li>'; $output .= '</li>';
} }
else { else {
......
...@@ -578,7 +578,7 @@ function book_tree_recurse($nid, $depth, $children, $unfold = array()) { ...@@ -578,7 +578,7 @@ function book_tree_recurse($nid, $depth, $children, $unfold = array()) {
if ($tree = book_tree_recurse($node->nid, $depth - 1, $children, $unfold)) { if ($tree = book_tree_recurse($node->nid, $depth - 1, $children, $unfold)) {
$output .= '<li class="expanded">'; $output .= '<li class="expanded">';
$output .= l($node->title, 'node/'. $node->nid); $output .= l($node->title, 'node/'. $node->nid);
$output .= '<ul>'. $tree .'</ul>'; $output .= '<ul class="menu">'. $tree .'</ul>';
$output .= '</li>'; $output .= '</li>';
} }
else { else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment