diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-01-24 08:22:12 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-01-24 08:22:12 +0000 |
commit | 3c6066cffaa3bd45508b00c2b1e47677421f38eb (patch) | |
tree | c76c556cc52caa29be460c9866c11099b88fce06 | |
parent | b9f6b72a5877943e13d940e0705826d002ca1361 (diff) | |
download | brdo-3c6066cffaa3bd45508b00c2b1e47677421f38eb.tar.gz brdo-3c6066cffaa3bd45508b00c2b1e47677421f38eb.tar.bz2 |
- Patch #45706 by markus: keep up with CSS improvements.
-rw-r--r-- | modules/book.module | 2 | ||||
-rw-r--r-- | modules/book/book.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/book.module b/modules/book.module index 9a0c73628..2ed3f5c9e 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 9a0c73628..2ed3f5c9e 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 { |