From 3c6066cffaa3bd45508b00c2b1e47677421f38eb Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Tue, 24 Jan 2006 08:22:12 +0000 Subject: [PATCH] - Patch #45706 by markus: keep up with CSS improvements. --- modules/book.module | 2 +- modules/book/book.module | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/book.module b/modules/book.module index 9a0c736285bf..2ed3f5c9ed03 100644 --- a/modules/book.module +++ b/modules/book.module @@ -578,7 +578,7 @@ function book_tree_recurse($nid, $depth, $children, $unfold = array()) { if ($tree = book_tree_recurse($node->nid, $depth - 1, $children, $unfold)) { $output .= '<li class="expanded">'; $output .= l($node->title, 'node/'. $node->nid); - $output .= '<ul>'. $tree .'</ul>'; + $output .= '<ul class="menu">'. $tree .'</ul>'; $output .= '</li>'; } else { diff --git a/modules/book/book.module b/modules/book/book.module index 9a0c736285bf..2ed3f5c9ed03 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -578,7 +578,7 @@ function book_tree_recurse($nid, $depth, $children, $unfold = array()) { if ($tree = book_tree_recurse($node->nid, $depth - 1, $children, $unfold)) { $output .= '<li class="expanded">'; $output .= l($node->title, 'node/'. $node->nid); - $output .= '<ul>'. $tree .'</ul>'; + $output .= '<ul class="menu">'. $tree .'</ul>'; $output .= '</li>'; } else { -- GitLab